我正在尝试为Entity Framework实现动态投影,以便能够指定属性列表以返回ang获取值的字典作为结果。
public static IQueryable<Dictionary<string, object>> ProjectionMap<TSource>
(IQueryable<TSource> sourceModel, IEnumerable<string> properties)
{
var itemParam = Expression.Parameter(typeof (TSource), "item");
var addMethod = typeof (Dictionary<string, object>).GetMethod("Add");
var elements = properties.
Select(
property =>
Expression.ElementInit(addMethod, Expression.Constant(property),
GetPropertyExpression<TSource>(itemParam, property))).
ToList();
var newDictionaryExpression =
Expression.New(typeof (Dictionary<string, object>));
var dictionaryInit = Expression.ListInit(newDictionaryExpression, elements);
var projection = Expression.Lambda<Func<TSource, Dictionary<string, object>>>(dictionaryInit, itemParam);
return sourceModel.Select(projection);
}
public static Expression GetPropertyExpression<T>(ParameterExpression parameter, string propertyName)
{
var properties = typeof (T).GetProperties();
var property = properties.First(p => p.Name == propertyName);
return Expression.Property(parameter, property);
}
在运行时运行以下代码引发异常
var query = ProjectionMap(db.Posts, new[]{"Subject"});
var result = query.ToList();
NotSupportedException异常 LINQ to Entities中仅支持具有单个元素的列表初始化项。
任何想法如何修复代码或建议如何正确实现它? 提前谢谢。
答案 0 :(得分:0)
我得到了同样的错误,但可能出于不同的原因(我没有尝试过您的代码)。 希望这有助于我在select之前添加.ToList()。我选择了Hashtable,我认为问题是sql不知道怎么做,虽然我习惯于看到不同的错误。 无论如何,也许试试
return sourceModel.ToList().Select(projection);
因为sourceModel是你的IQueryable(起初我打算在属性上建议ToList(),但那已经是IEnumerable了。