WCF RIA Services允许我们创建数据模型来综合从数据访问层得到的不同实体数据。这个模型就是表示模型。当我们不想把数据层的数据直接公开给客户端时,会使用这个特性。当使用表示模型时,可以只修改表示模型而不是客户端来回应数据访问层中的改动。还可以设计一个综合那些仅与客户端用户相关的字段的模型,来简化客户端代码。
创建表示模型
需要用来维护数据完整性的数据库结构可能会比在客户端应用中需要的那些实体更复杂。我们可以通过把那些与应用相关的字段组合进一个表示模型,来简化这个数据结构。例如,在AdventureWorksLT示例数据库中,我们通过Customer,CustomerAddress,Address表来检索客户和地址数据。
?
1 2 3 4 5 6 7 | [EnableClIEntAccess()] public class CustomerDomainService : DomainService { AdventureWorksLT_DataEntitIEs context = new AdventureWorksLT_DataEntitIEs(); } |
为了检索数据,我们在Domain service中添加了一个query方法。在query方法中,从数据访问层中的实体检索相关的数据,并把这些值赋值给新的表示模型实例中对应的成员属性。从这个query方法,要么返回一个这个表示模型类型的实例,要么返回一个表示模型类型的Iqueryable。下面示例了Customer表示模型的查询方法。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 @H_419_154@ 20 21 22 23 24 25 26 | public Iqueryable<CUSTOMERPRESENTATIONMODEL> GetCustomersWithMainOffice() { return from c in context.Customers join ca in context.CustomerAddresses on c.CustomerID equals ca.CustomerID join a in context.Addresses on ca.AddressID equals a.AddressID where ca.Addresstype == "Main Office" select new CustomerPresentationModel() { CustomerID = c.CustomerID, Firstname = c.Firstname, Lastname = c.Lastname, EmailAddress = c.EmailAddress, Phone = c.Phone, Addresstype = ca.Addresstype, Addressline1 = a.Addressline1, Addressline2 = a.Addressline2, City = a.City, StateProvince = a.StateProvince, PostalCode = a.PostalCode, @H_419_154@ AddressID = a.AddressID, AddressModifIEdDate = a.ModifIEdDate, CustomerModifIEdDate = c.ModifIEdDate }; } |
由于在数据访问层中并没有通过domain service公开实体(Customer、CustomerAddress、Address),所以不会在客户端生成这些类型。相反,在客户端仅生成表示模型类型。 如果想通过表示模型更新数据,我们需创建一个更新方法,并定义从表示模型向实体存贮值的逻辑。可以参考本节最后的示例。 把值返回给客户端 提交了更改后,我们可能需要把存贮到中间层逻辑或数据源中的值传回客户端。WCF RIA Services提供了Associate(TEntity,TStoreEntity)方法来映射从实体回到表示模型的值。在这个方法中,我们提供一个在提交后调用的回调方法。在这个回调方法中,我们把在中间层已改动的值赋值给表示模型。通过执行这个步骤来使客户端持有当前值。 下面是示例演示了如何更新实体中的值,并如何把修改后的数据映射回表示模型。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 @H_419_154@ 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 @H_245_502@ 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | [Update] public voID UpdateCustomer(CustomerPresentationModel customerPM) { Customer customerEntity = context.Customers.Where(c => c.CustomerID == customerPM.CustomerID).FirstOrDefault(); CustomerAddress customerAddressEntity = context.CustomerAddresses.Where(ca => ca.CustomerID == customerPM.CustomerID && ca.AddressID == customerPM.AddressID).FirstOrDefault(); Address addressEntity = context.Addresses.Where(a => a.AddressID == customerPM.AddressID).FirstOrDefault(); customerEntity.Firstname = customerPM.Firstname; customerEntity.Lastname = customerPM.Lastname; customerEntity.EmailAddress = customerPM.EmailAddress; customerEntity.Phone = customerPM.Phone; customerAddressEntity.Addresstype = customerPM.Addresstype; addressEntity.Addressline1 = customerPM.Addressline1; addressEntity.Addressline2 = customerPM.Addressline2; addressEntity.City = customerPM.City; addressEntity.StateProvince = customerPM.StateProvince; addressEntity.PostalCode = customerPM.PostalCode; CustomerPresentationModel originalValues = this .ChangeSet.Getoriginal(customerPM); @H_419_154@ if (originalValues.Firstname != customerPM.Firstname || originalValues.Lastname != customerPM.Lastname || originalValues.EmailAddress != customerPM.EmailAddress || originalValues.Phone != customerPM.Phone) { customerEntity.ModifIEdDate = DateTime.Now; } if (originalValues.Addressline1 != customerPM.Addressline1 || originalValues.Addressline2 != customerPM.Addressline2 || originalValues.City != customerPM.City || originalValues.StateProvince != customerPM.StateProvince || originalValues.PostalCode != customerPM.PostalCode) { addressEntity.ModifIEdDate = DateTime.Now; } context.SaveChanges(); this .ChangeSet.Associate(customerPM,customerEntity,MapCustomerToCustomerPM); @H_245_502@ this .ChangeSet.Associate(customerPM,addressEntity,MapAddresstoCustomerPM); } private voID MapCustomerToCustomerPM(CustomerPresentationModel customerPM,Customer customerEntity) { customerPM.CustomerModifIEdDate = customerEntity.ModifIEdDate; } private voID MapAddresstoCustomerPM(CustomerPresentationModel customerPM,Address addressEntity) { customerPM.AddressModifIEdDate = addressEntity.ModifIEdDate; } |
以上是内存溢出为你收集整理的Silverlight WCF RIA服务(十六)表示模型全部内容,希望文章能够帮你解决Silverlight WCF RIA服务(十六)表示模型所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)