1
我正在使用AttachObjectGraph
和SaveChanges
在我的sql數據庫中保存記錄。當我編輯我想保存的對象時,一切正常。但是,當我創建對象的新實例並嘗試保存它時,我在AttachObjectGraph上得到一個Object reference not set to an instance of an object.
異常。我確信我給對象的所有屬性賦值並且不留下任何空白或空值。發生什麼事?幫助使用AttachObjectGraph
示例代碼:
class SimpleOBJ
{
public string userName;
public string password;
}
public void insertOBJ(SimpleOBJ S)
{
if (string.IsNullOrEmpty(S.password))
S.password = "test";
db.AttachObjectGraph(S);
db.SaveChanges();
}
你能發佈你的代碼嗎? 「AttachObjectGraph」定義在哪裏? – Oded 2011-02-04 09:04:01