SubSonic2.2 Add() 不起作用
我的数据库中有 2 个表:客户、联系人。 CusID 是联系人表中的外键。 以下
Dim contact as New Contact(Guid.NewGuid())
contact.FirstName = "Mary"
contact.LastName = "Jane"
customer.Contacts.Add(contact)
customer.Save()
我尝试使用 SubSonic2.2 生成 客户和联系人类。该联系人未保存在数据库中。
I have 2 tables in my DB, Customers, Contacts. CusID is a Foreign Key in Contacts table. I tried the following
Dim contact as New Contact(Guid.NewGuid())
contact.FirstName = "Mary"
contact.LastName = "Jane"
customer.Contacts.Add(contact)
customer.Save()
Customers and Contacts classes were generated with SubSonic2.2. The contact is not being saved in the DB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许答案有点晚了,但也许无论如何都有帮助。
Subsonic 的 Save() 方法按设计仅保留当前对象。
您可以执行:
或
代替。
Maybe the answer is a little bit late but maybe that helps anyway.
Subsonic's Save() method only persists the current object by design.
You can either do:
or
instead.