LINQ to Entities不支持在Entity Framework中调用

时间:2016-02-02 10:09:54

标签: c# entity-framework linq

下面是我必须使用表达式的函数,但我认为Entity Framework不允许这样做。我在Linq-to-SQL中使用了这个函数,它正在工作。我也尝试过使用LinqKit,因为这就是我在很多答案中找到的,但错误仍然存​​在。

cURL

当我通过将public static IList<SelectListItem> From<T>(IQueryable<T> Source, Expression<Func<T, object>> Value, Expression<Func<T, string>> Text) { var q = from T item in Source select new SelectListItem() { Text = Text.Compile()((item)), Value = Value.Compile()((item)).ToString() }; return q.ToList(); } 转换为List<T>来提供IQueryable时,它可以正常工作。

2 个答案:

答案 0 :(得分:2)

您可以使用LinqKit解决问题:

public static IList<SelectListItem> From<T>(
    IQueryable<T> Source,
    Expression<Func<T, object>> Value,
    Expression<Func<T, string>> Text)
{
    var q = from T item in Source.AsExpandable()
            select new SelectListItem()
            {
                Text = Text.Invoke(item),
                Value = Value.Invoke(item).ToString()
            };

    return q.ToList();
}

AsExpandable允许在查询执行之前扩展表达式。

当我在这样的客户表上测试上述代码时:

var result =
    From(
        context.Customers,
        x => x.CustomerId,
        x => x.Name);

这是在SQL服务器上执行的SQL:

SELECT 
    [Extent1].[CustomerId] AS [CustomerId], 
    [Extent1].[Name] AS [Name], 
     CAST( [Extent1].[CustomerId] AS nvarchar(max)) AS [C1]
    FROM [dbo].[Customers] AS [Extent1]

答案 1 :(得分:0)

您需要使用System.Linq.Expressions构建整个表达式。

这是一个功能(我对类似问题Expression to convert IQueryable<t> int List<SelectListItem>的回答的修改版本):

public static class Utils
{
    public static IList<SelectListItem> ToSelectList<TSource, TValue>(this IQueryable<TSource> source, Expression<Func<TSource, TValue>> valueSelector, Expression<Func<TSource, string>> textSelector)
    {
        var itemValue = valueSelector.Body;
        if (itemValue.Type != typeof(string))
            itemValue = Expression.Call(itemValue, itemValue.Type.GetMethod("ToString", Type.EmptyTypes));
        var itemText = textSelector.Body.ReplaceParameter(textSelector.Parameters[0], valueSelector.Parameters[0]);
        var targetType = typeof(SelectListItem);
        var selector = Expression.Lambda<Func<TSource, SelectListItem>>(
            Expression.MemberInit(Expression.New(targetType),
                Expression.Bind(targetType.GetProperty("Value"), itemValue),
                Expression.Bind(targetType.GetProperty("Text"), itemText)
            ), valueSelector.Parameters);
        return source.Select(selector).ToList();
    }

    static Expression ReplaceParameter(this Expression expression, ParameterExpression source, Expression target)
    {
        return new ParameterExpressionReplacer { source = source, target = target }.Visit(expression);
    }

    class ParameterExpressionReplacer : ExpressionVisitor
    {
        public ParameterExpression source;
        public Expression target;
        protected override Expression VisitParameter(ParameterExpression node)
        {
            return node == source ? target : base.VisitParameter(node);
        }
    }
}

注意我已经更改了名称,添加了第二个泛型参数以便能够传递未修改的值类型,并使其成为扩展方法,因此可以像这样使用

public class Person
{
    public int Id { get; set; }
    public string Name { get; set; }
}

var result = db.Persons.ToSelectList(p => p.Id, p => p.Name);