Silverlight WCF RIA服务(十七)数据 7

Silverlight WCF RIA服务(十七)数据 7,第1张

概述数据模型中的继承 WCF RIA Services允许我们使用做为继承体系中的一部分的实体。一个继承模型包含了一个从其他数据类派生的数据类。例如,一个多态继承模型可以包含一个Customer实体和两个从Customer派生的实体(PublicSectorCustomer和PrivateSectorCustomer)。通过RIA Services,我们可以在domain Services中写一个返回 数据模型中的继承
WCF RIA Services允许我们使用做为继承体系中的一部分的实体。一个继承模型包含了一个从其他数据类派生的数据类。例如,一个多态继承模型可以包含一个Customer实体和两个从Customer派生的实体(PublicSectorCustomer和PrivateSectorCustomer)。通过RIA Services,我们可以在domain Services中写一个返回一个根类型的集合和从根类型派生的类型的查询方法。或者,可以写一个仅返回派生类型集合的查询方法。还可以写修改根类型或任何派生类的 *** 作方法。
注:只在VS2010和SL4中使用RIA Services时支持继承,在VS2008和SL3中不支持。

数据模型
服务端项目中,我们可以像定义其他数据类那样来为继承模型定义数据类。使用的这个对象模型既可以是从数据层中自动生成的类也可以是手动创建的数据类。
我们不必非要通过domain service来公开整个层次。相反,在domain service中公开的层次中最后派生的类,是与客户端交互的根类。从根类型派生出的类型可以向客户端公开,但父类型不必被公开。在根类中,必须把想要公开的的任意派生类型包含在KNownTypeAttribute属性中。如果想要忽略派生类型,可以不把它包含在KNownTypeAttribute属性中。下面示例了一个包含基类Customer,和两个派生类PrivateSectorCustomer,PublicSectorCustomer的手工创建的数据模型。两个派生类会包含在Customer类的KNownTypeAttribute属性下,因为Customer是数据 *** 作的根类型。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [KNownType(typeof(PublicSectorCustomer)),KNownType(typeof(PrivateSectorCustomer))] public class Customer {     [Key]     public int CustomerID { get; set; }     public string Firstname { get; set; }     public string Lastname { get; set; }     public string Address { get; set; }     public string City { get; set; }     public string StateProvince { get; set; }     public string PostalCode { get; set; }     [Association("CustomerOrders","CustomerID","CustomerID")]     public List<ORDER> Orders { get; set; } }   public class PublicSectorCustomer : Customer {     public string GSARegion { get; set; } }   public class PrivateSectorCustomer : Customer {     public string Companyname { get; set; } }

多态查询
定义了数据模型后,我们创建一个对客户端公开类型的domain service。当在一个查询方法中公开一个类型时,可以返回这个类型和任意派生的类型。例如,一个返回Customer实体集合的查询可以包含一个PrivateSectorCustomer对象和PublicSectorCustomer对象。还可以指定一个只返回一个派生类型的查询方法。下面示例了返回不同类型的查询方法。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public Iqueryable<CUSTOMER> GetCustomers() {     return context.Customers; }   public Iqueryable<CUSTOMER> GetCustomersByState(string state) {     return context.Customers.Where(c => c.StateProvince == state); }   public Iqueryable<PUBliCSECTORCUSTOMER> GetCustomersByGSARegion(string region) {     return context.Customers.OfType<PUBliCSECTORCUSTOMER>().Where(c => c.GSARegion == region); }   public Iqueryable<PRIVATESECTORCUSTOMER> GetPrivateSectorByPostalCode(string postalcode) {     return context.Customers.OfType<PRIVATESECTORCUSTOMER>().Where(c => c.PostalCode == postalcode); }

为客户端项目生成代码
当生成解决方案时,在客户端会为已经在domain service中公开的继承体系生成代码。体系的根类被生成并派生于Entity类。每个派生的类都是生成和派生于根类。在DomainContext类中,只生成一个Entity(TEntity)成员属性,并且它需要根类型的对象。为每一个查询都生成了Entityquery对象,它返回在domain service *** 作中指定的类型。
下面示例了一个在客户端为查询方法生成的简单版本的代码。它并没有包含所有生成类中的代码,只是想强调一些重要的成员属性和方法。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 [DataContract(namespace="http://schemas.datacontract.org/2004/07/ExampleApplication.Web")] [KNownType(typeof(PrivateSectorCustomer))] [KNownType(typeof(PublicSectorCustomer))] public partial class Customer : Entity {       public string Address { get; set; }     public string City { get; set; }     [Key()]     public int CustomerID { get; set; }     public string Firstname { get; set; }     public string Lastname { get; set; }     public string PostalCode { get; set; }     public string StateProvince { get; set; }       public overrIDe object GetIDentity();   }   [DataContract(namespace="http://schemas.datacontract.org/2004/07/ExampleApplication.Web")] public sealed partial class PrivateSectorCustomer : Customer {     public string Companyname { get; set; } }   [DataContract(namespace="http://schemas.datacontract.org/2004/07/ExampleApplication.Web")] public sealed partial class PublicSectorCustomer : Customer {     public string GSARegion { get; set; } }   public sealed partial class CustomerDomainContext : DomainContext {     public CustomerDomainContext();     public CustomerDomainContext(Uri serviceUri);     public CustomerDomainContext(DomainClIEnt domainClIEnt);       public EntitySet<CUSTOMER> Customers { get; }       public Entityquery<CUSTOMER> GetCustomersquery();     public Entityquery<PUBliCSECTORCUSTOMER> GetCustomersByGSARegionquery(string region);     public Entityquery<CUSTOMER> GetCustomersByStatequery(string state);     public Entityquery<PRIVATESECTORCUSTOMER> GetPrivateSectorByPostalCodequery(string postalcode); }

数据修改
可以为继承体系中的更新、插入和删除对象添加domain service方法。如同查询方法,可以为 *** 作指定一个根类型或一个派生类型。然而,任何对派生类的更新、插入或删除 *** 作也都应该可以在根类型中执行。可以在体系中为任何类型添加named updat
方法。会为在方法中指定的类型在客户端生成相应的named update方法。
下面的代码示例了两个更新方法和一个named update方法的签名。
?
1 2 3 4 5 public voID UpdateCustomer(Customer customer) { /* implement */ } public voID UpdatePublicSectorCustomer(PublicSectorCustomer customer) { /* implement */ } public voID EnrollinRewardsProgram(PrivateSectorCustomer customer) { /* implement */ }

关联
可以在根类或派生类中定义关联。我们在练歌数据类之间应用AssociationAttribute属性来定义一个关联。在数据模型的例子中,在Customer和Order之间定义了一个关联。如果对根类型应用了关联,那么所有的派生类型也包含这个关联。
使用继承的基本规则


仅对实体类型支持继承,非实体类型被当做在domain service *** 作签名中指定的类型。 在domain service *** 作中的返回值和参数,不支持接口类型。 在代码生成的时候必须知道继承体系中的类型集。在生成代码的时候没有指定返回类型的行为是未指明和实现相关的。 允许对实体类型的公共成员属性或字段使用virtual或new。但在客户端对应生成的实体类型中会被忽略。 不允许对domain service *** 作方法重载。 与继承相关的liNQ查询功能不能用来运行domain service方法。特别地,不支持OfType>T&lt;,is,as和GetType() *** 作符和方法。然而,在liNQ to Objects查询中的EntitySet或EntityCollection(TEntity)上直接使用这些 *** 作符。

实体继承体系

定义继承体系使用下面的规则:

使用System.Runtime.Serialization.KNownTypeAttribute属性来指定已知的类型。对RIA Services来说,需要使用包含一个System.Type参数并具有KNownTypeAttribute的构造函数。 体系中的已知类型,必须在domain service公开的体系中的根类型中指定。RIA Services 不支持在派生类型上声明类型为已知。 每个在已知类型集中的类都必须是public。 在体系中的一个或多个类可以是abstract的。 当声明已知类型时,可以在体系中省略一个或多个类。 必须在根类中指定关键成员。 关联的声明和使用是不可改变的。

DomainService *** 作

在继承体系中使用下面规则定义domain service *** 作

在体系中至少有一个对应于根类型的查询方法。其他的查询 *** 作可以使用派生类型作为返回值。 对返回多态结果的方法,查询方法可以返回一个根类型。 如果对系统内的类型定义了更新、插入、或删除 *** 作,那么对根类型也要定义相同的 *** 作。不可能只对某些类型选择 *** 作。 自定义 *** 作可以使用根类型或派生类型作为实体参数。当实例的实际类型是从自定义 *** 作中的类型派生的时候, *** 作是可行的。 DomainServiceDescription类返回对给定类型最适用的更新、插入、删除和查询方法。

TpyeDescriptionProvIDer

下面的规则应用于TypeDescriptionProvIDer(TDP)

当体系中的根类型通过一个查询方法或IncludeAttribute属性公开时,会对liNQ to sql应用TpyeDescriptionProvIDer,并且实体框架会自动对实体使用KNownType属性声明。而对派生类型则不会如此。 在Add New Domain Service Class对话框中不会提供任何继承体系的功能。用户可以在体系中选择一些、全部或不选择类型。

生成的代码

对体系中的实体,以下的规则应用于客户端的生成代码

对每个继承体系,只生成一个EntitySet(TEntity)类。在已知的体系中EntitySet(TEntity)的类型参数是最基本的类型。 对体系中每个已知的类型,都对应生成一个实体类型。即使没有domain service方法公开这个类型,这个实体类型也会生成。 对指定的类型可生成自定义方法,并这些方法可用于任何派生类型。 构造函数是根据继承体系来绑定的。每个类型都可以调用OnCreated方法并可以自定义此方法。 如果服务端的实体体系中的类被跳过,那么在客户端生成的实体体系中也会被跳过。 总结

以上是内存溢出为你收集整理的Silverlight WCF RIA服务(十七)数据 7全部内容,希望文章能够帮你解决Silverlight WCF RIA服务(十七)数据 7所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1065761.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存