RIA 服务中的实体和实体集是什么?

发布于 2024-11-15 07:04:12 字数 91 浏览 6 评论 0原文

我是 RIA 服务的新手,我想了解 RIA 服务中的实体和实体集

“实体集”表和实体是实体集中的一列吗?

因此实体集具有一个或多个实体?

I am new to RIA Services and I want to understand Entity and EntitySets in RIA Services

Are "Entity Sets" Tables and Entity a column in the Entity Sets?

Thus Entity Sets having one or more Entities?

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

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

发布评论

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

评论(1

箹锭⒈辈孓 2024-11-22 07:04:12

所有 Ria Services 对象都继承自 System.ServiceModel.DomainServices.ClientEntity,并且它们包含许多其他接口,例如 INotifyDataErrorInfo 和 IChangeTracking。简而言之,如果您将 ORM 链接 EF4 与 RIA 服务一起使用,则每个表都将成为一个“实体”。

EntitySet 表示实体实例的集合。 http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(ENTITYSET);k(DevLang-CSHARP)&rd=true

EntitySet 通常由 Ria 和您的 ORM 自动创建。

希望有帮助。

All Ria Services object inherit from System.ServiceModel.DomainServices.ClientEntity and they include a bunch of other interfaces like INotifyDataErrorInfo and IChangeTracking. In short if you are using an ORM link EF4 with RIA Services each table would become an 'Entity'.

EntitySet represents a collection of Entity instances. http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(ENTITYSET);k(DevLang-CSHARP)&rd=true

EntitySet's are normally created automatically by Ria and your ORM.

Hope that helps.

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