数据绑定子属性对象 null
我有 DataGrid,在代码中显式创建了列。我在这样的代码中绑定 WPF 元素:
var path = "ReferenceProperty." + otherObj.StringProperty;
var dataBinding = new Binding(path) { TargetNullValue = "not set" };
当我在 DataGrid 中创建新行时出现问题,ReferenceProperty 为 null 并引发异常。 如果我尝试在默认构造函数中创建 ReferencePropertys 对象,NHibernate 会认为瞬态对象在刷新之前没有保存。 我该如何解决它?
提前致谢。
I have DataGrid with explicitly created columns in code. I am binding WPF element in code like this:
var path = "ReferenceProperty." + otherObj.StringProperty;
var dataBinding = new Binding(path) { TargetNullValue = "not set" };
The problem occurs when i create new row in the DataGrid, the ReferenceProperty is null and exception is thrown.
If i try to create ReferencePropertys object in the default ctor NHibernate argues that transient object wasn't saved before flush.
How can i solve it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您需要为这个多对一引用指定级联。将其设置为全部或保存更新。
Sounds like you need to specify a cascade for this many-to-one reference. Either set it to all or save-update.