WCF RIA 服务插入子项目以及新的父项目

发布于 2024-11-30 15:46:27 字数 165 浏览 1 评论 0原文

假设我有一个名为项目的对象,每个项目都有任务...假设我想创建一个项目并指定任务...以一种形式完成所有这些...当用户单击“保存”时,保存项目和任务...但是因为项目不存在,当我创建任务时,它们不会有pk?我该如何处理这个问题...能够将孩子与新父母一起插入...

谢谢,

马尔科姆

Say I have a object called project, and each project has tasks... Lets say I wanted to create a project and specify tasks...Do all this in one form...and when the user clicks 'save', save the project and tasks...However because project does not exist, when I create the tasks, they won't have a pk? How Can I handle this...be able to insert child with new parent...

Thanks,

Malcom

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

哑剧 2024-12-07 15:46:27

使用 Linq:

Project project = new Project();
project.Tasks = tasks;
db.SubmitChanges();

Linq 将分配主键和外键。

With Linq:

Project project = new Project();
project.Tasks = tasks;
db.SubmitChanges();

Linq will assign the primary keys and foreign keys.

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