我正在使用WCF數據服務。我在我的服務中有一個函數,它在SQL DB的表中添加一條記錄並返回插入記錄的ID。WCF數據服務ODATA
I用於將要插入參數形式的值傳遞給函數。
對於實例
public int Add(string Name, string Password)
{
// Here I will Add the record and return the ID of the record added in DB
}
,但我不想做傳遞參數的形式的這種方式。
我想直接傳遞對象。
像
public int Add(User user)
{
// Here I will Add the record and return the ID of the record added in DB
}
我在寫服務功能類似上面,我的服務項目是全成。當我更新我的服務提示時,我收到錯誤。
它說只支持原始類型。有沒有什麼解決 這個問題。
感謝您的時間回答我的問題。
謝謝阿南德將開始這樣做。其實我不熟悉使用堆棧溢出。謝謝你的建議。我會從現在開始做這件事.. – ssmsnet 2012-07-31 11:32:26
沒問題。不用謝 ! – Anand 2012-07-31 11:33:33