从 RIA 服务中的新记录获取身份 ID
我看过很多关于使用其他数据库和框架检索新创建记录的身份 ID 的文章。我正在 Silverlight RIA 服务应用程序中的代码中创建记录。我执行 Add 方法,然后对 DomainContext 执行 SubmitChanges,但没有看到 ID。它显示为 0。我如何获得新的 ID?谢谢。
I've seen a lot of articles about retrieving the identity ID of a new created record using other DBs and frameworks. I am creating a record in code in a Silverlight RIA Services app. I perform the Add method and then do a SubmitChanges on the DomainContext, but I do not see the ID. It comes up as 0. How do I get the new ID? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
OnProfileCreateCallback 是 context.submitchanges(...) 中使用的回调方法,
如果您有多个记录作为添加的一部分,您可以放置自定义逻辑。
Try this
OnProfileCreateCallback is a call back method used in context.submitchanges(...)
You can put custom logic if you are having multiple records as part of add.