SubSonic2.2 Add() 不起作用

发布于 2024-08-20 12:20:57 字数 268 浏览 4 评论 0原文

我的数据库中有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素罗衫 2024-08-27 12:20:57

也许答案有点晚了,但也许无论如何都有帮助。
Subsonic 的 Save() 方法按设计仅保留当前对象。

您可以执行:

customer.Contacts.SaveAll();

customer.DeepSave();

代替。

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:

customer.Contacts.SaveAll();

or

customer.DeepSave();

instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文