我有一个返回IQueryable<Criteria>
的服务。 Criteria
可以有多个Attribute
,而Attribute
可以有一个AttributeType
。
这是模型类:
public class Criteria
{
public int Id { get; set; }
public int CategoryId { get; set; }
[Required] [MaxLength(100)] public string Name { get; set; }
[MaxLength(1000)] public string Description { get; set; }
public bool Highlight { get; set; }
public int Order { get; set; }
public IList<Attribute> Attributes { get; set; }
}
public class Attribute
{
public int Id { get; set; }
public int CriteriaId { get; set; }
[Required] [MaxLength(100)] public string Name { get; set; }
[MaxLength(100)] public string Description { get; set; }
public int Order { get; set; }
public AttributeType Type { get; set; }
public AttributeOperation Operation { get; set; }
public IList<Formula> Formulas { get; set; }
}
public class AttributeType
{
public int Id { get; set; }
public int AttributeId { get; set; }
public string Name { get; set; }
public Attribute Attribute { get; set; }
}
我的CriteriaService
使用基本服务来返回IQueryable<Criteria>
。基本服务方法如下:
/// <summary>
/// Gets all the entities
/// </summary>
/// <param name="includes">Option includes for eager loading</param>
/// <returns></returns>
public IQueryable<T> List(params string[] includes)
{
// Create a query
IQueryable<T> query = _dbEntitySet;
// For each include, append to our query
if (includes != null)
foreach (var include in includes)
query = query.Include(include);
// Return our query
return query;
}
现在,我想返回给定类别的所有AttributeTypes
。因此,我开始创建一个看起来像这样的方法:
public List<AttributeType> List(int categoryId)
{
var query = _criteriaService.Value.List(categoryId, "attributes.type").Select(m => m.Attributes);
// TODO: How to get a list of Types from the Attribute
return new List<AttributeType>();
}
但是我不确定如何从每个AttributeTypes
中获取所有Attribute
。
有人可以帮忙吗?
答案 0 :(得分:1)
只需使用SelectMany
即可将您的列表列表展平为一个列表:
var query = _criteriaService.Value.List(categoryId, "attributes.type")
.SelectMany(m => m.Attributes)
.Select(y => x.Type);
答案 1 :(得分:0)
如上所述, @media only screen and (min-width: 992px) {
.mytext {
color: green;
}
}
通常就是您想要的。
值得注意的是,最好使用尽可能多的Linq代码,因为在SelectMany
上通常使用IQueryable
是因为它会在后台转换为其他类型的代码,例如SQL查询,因此不会在C#内存中逐步完成。