我有以下代码..
else if (p.EntityKey != null)
{
db.ApplyPropertyChanges(p.EntityKey.EntitySetName, new TableName_Entity()
{
AccountName =Profile.UserName,
Mx = null,
Sx = null,
Lx = null,
LastUpdated = DateTime.UtcNow
});
对于这篇文章,我收到的错误如“ObjectStateManager不包含带有类型对象引用的ObjectStateEntry。”
尝试挖掘,但无法理解确切的原因。 在它完美运行之前进一步添加但稍后我在表中添加了LastUpdated列,因此开始给出上述错误。