我有一个 wep api 项目使用 odata 使用数据,但我在使用 odata wep api 时遇到了一些问题。
当我执行该查询时
/api/values?$top=50&$filter=Comments/Fortuneteller/FullName eq 'some string'
它给了我以下错误
"Message": "URI 中指定的查询无效。", "ExceptionMessage": "属性 'Fortuneteller' 的属性访问的父值不是单个值。属性访问只能应用于单个价值。”
我不想从控制器返回实体对象。有没有办法通过 DTO 过滤实体?
我在我的项目中使用 Repository + Service 层模式,我的项目结构是这样的
api 控制器 <-> 服务 <-> 存储库 <-> EF
api控制器
[Queryable]
public IQueryable<FortuneDTO> Get()
{
return service.FiterBy((_ => true));
}
服务
public IQueryable<FortuneDTO> FiterBy(Expression<Func<tblFortune, bool>> filter)
{
return repository.List().Where(filter).Select(_ => new FortuneDTO
{
CreatedByFullName = _.aspnet_Users.FullName,
Id = _.FortuneId,
Comments = _.tblComment.Select(c => new CommentDTO
{
Id=c.CommentId,
Comment = c.Comment,
Fortuneteller = new FortunetellerDTO {
FullName=c.aspnet_Users.FullName,
Id=c.aspnet_Users.UserId
}
}).AsQueryable()
});
}
存储库
public virtual IQueryable<TEntity> List()
{
return context.CreateObjectSet<TEntity>();
}
DTO
public class FortuneDTO
{
public int Id { get; set; }
public string CreatedByFullName { get; set; }
public IQueryable<CommentDTO> Comments { get; set; }
}
public class CommentDTO
{
public int Id { get; set; }
public string Comment { get; set; }
public FortunetellerDTO Fortuneteller { get; set; }
}
public class FortunetellerDTO
{
public Guid Id { get; set; }
public string FullName { get; set; }
}