更新调用时的域服务变更集为空?
我正在开发一个 WPF 项目,并添加了一个域服务,我已使用 EF 将其绑定到我的 DataContext。问题是我的对象“Cat”的域服务上的“更新”返回空变更集。当我单击“保存”并且更改了视图上的道具值时,以下行中的更改集为空,例如,我将猫的描述更改为“毛茸茸的猫”之类的内容,如果我将鼠标悬停在属性上,则会在属性上设置此更改集在 currentCat 上并检查 desc 属性???
public void UpdateCat(Cat currentCat)
{
this.ObjectContext.Cats.AttachAsModified(currentCat, ChangeSet.GetOriginal(currentCat));
}
我缺少什么吗?请帮忙..
I am working on a WPF project and have added a domain service which I have tied to my DataContext using EF. The problem is the "Update" on my domain service for my object 'Cat' is returning a null changeset. The changeset in the following line is null when I click Save and I have changed a prop value on my view, for example, I changed the description of the Cat to something like 'Furry Cat' and this is set on the property if I hover on the currentCat and check the desc property???
public void UpdateCat(Cat currentCat)
{
this.ObjectContext.Cats.AttachAsModified(currentCat, ChangeSet.GetOriginal(currentCat));
}
Is there something I am missing?Please help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论