RIA 服务中的实体和实体集是什么?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有 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.