我对RIA服务非常熟悉,但不熟悉WCF数据服务,我想知道如何在后者中做一些我知道如何做的事情。
我知道每个数据访问方法的示例,当数据服务由实体框架(或类似的东西)支持时,如何查询数据库实体。
但是我经常想要提供一种不基于任何数据库实体的可查询服务方法。它可以是来自多个数据库实体,固有分组,或仅仅是数据库实体以及一些其他计算数据的组合。
假设我有以下课程:
// part of the model
class SomeEntity
{
public Guid Id { get; set; }
public String PropertyA { get; set; }
public String PropertyB { get; set; }
public Guid SubsidiaryKey { get; set; }
public virtual SomeSubsidiaryEntity Subsidiary { get; set; }
public virtual ICollection<SomeRelatedEntity> RelatedEntities { get; set; }
}
// part of the model
class SomeSubsidiaryEntity
{
public Guid Id { get; set; }
public String PropertyS { get; set; }
}
// not part of the model, exists only for the service layer
class SomeEntityProjection
{
public Guid Id { get; set; }
public String PropertyA { get; set; }
public String PropertyB { get; set; }
public String PropertyS { get; set; }
public Int32 RelatedEntitiesCount { get; set; }
}
前两个是服务正在使用的数据库模型的一部分,最后一个是投影实体。
投影实体不是数据库的一部分 - 它只存在于服务层中。
使用RIA Services,我现在可以编写这样的查询函数:
public IQueryable<SomeEntityProjection> GetSomeEntitiesWithSomeFluff()
{
return
from e in this.DbContext.SomeEntities
select new SomeEntityProjection()
{
PropertyA = e.PropertyA,
PropertyB = e.PropertyB,
PropertyS = e.Subsidiary.PropertyS,
RelatedEntitiesCount = e.RelatedEntities.Count()
}
}
数据服务方法然后支持所有四个属性的客户端过滤和排序。所有这些客户端排序和过滤都将被正确委托给数据库并在那里完成。
我找不到WCF数据服务的任何这样的例子,所以我的问题是:WCF数据服务是否也可以这样做,如果是的话,怎么做呢?