defaultValue でプロパティを送信し、データベースの計算結果で更新する方法はありますか? データベースにはトリガーがあり、入力 -1 に対して新しい値を計算するプロシージャーがトリガーされます。価値を取り戻すには?
<Property Name="ID" Type="int" Nullable="false" StoreGeneratedPattern="None" DefaultValue="-1" />
var x = new Stuff();
db.Stuff.AddObject(x);
db.SaveChanges();
return x.ID //gives -1, but the computed value should be different.