在选择LINQ动态属性(LINQ dynamic property in select)

2019-10-17 11:40发布

// 嗨,大家好

我在做这个行动电话:

    [HttpGet]
    public virtual ActionResult JsonGetProvinces(int countryId)
    {
        //WebSiteContext WbContext = new WebSiteContext();
        //UnitOfWork UnitofWork = new UnitOfWork(WbContext);

        var provinces =
            (
                from province in unitofWork.ProvinceRepository.All
                where province.CountryId == countryId
                select new
                {
                    Id = province.Id,
                    Name = province.GetType().GetProperty("Name_" + CultureManager.GetCurrentCultureShortName()).GetValue(province)
                }
            ).ToList();

        return Json(provinces, JsonRequestBehavior.AllowGet);
    }

什么是错我的查询:

        var provinces =
            (
                from province in unitofWork.ProvinceRepository.All
                where province.CountryId == countryId
                select new
                {
                    Id = province.Id,
                    Name = province.GetType().GetProperty("Name_" + CultureManager.GetCurrentCultureShortName()).GetValue(province)
                }
            ).ToList();

格外, 名称= province.GetType()的getProperty( “名_” + CultureManager.GetCurrentCultureShortName())。的GetValue(省)

在BDD,有Name_frName_en列,我试图采取一个动态......这可能吗?

当然,我可以把两者并动态地选择在视图中的列,但我会知道怎么做...

谢谢您的帮助

Answer 1:

EF不能转换函数调用到SQL。 使用表达式树可以comlicated 看到这个问题

下面是表达式树的样品。 该GetQuery2相同GetQuery但与表达式树和PROPERTYNAME参数。

public static IQueryable<Foo> GetQuery(BlogContext context)
{
    var query = from x in context.BlogEntries
                select new Foo
                {
                    NameX = x.Name   
                };
    return query;
}


public static IQueryable<Foo> GetQuery2(BlogContext context, string propertyName)
{

    ConstructorInfo ci = typeof(Foo).GetConstructor(new Type[0]);
    MethodInfo miFooGetName = typeof(Foo).GetMethod("set_NameX");
    MethodInfo miBlogEntry = typeof(BlogEntry).GetMethod("get_" + propertyName);

    ParameterExpression param = Expression.Parameter(typeof(BlogEntry), "x");

    IQueryable<Foo> result = Queryable.Select<BlogEntry, Foo>(
                                context.BlogEntries,
                                Expression.Lambda<Func<BlogEntry, Foo>>(
                                    Expression.MemberInit(
                                        Expression.New(ci, new Expression[0]),
                                        new MemberBinding[]{
                                            Expression.Bind(miFooGetName, 
                                                            Expression.Property(param,
                                                            miBlogEntry))}
                                    ),
                                    param
                                )
                                );
    return result;
}

这是比较容易的获取所有所有的语言字符串,写一个附加属性名称不神奇。



Answer 2:

简短的回答是,你需要改变一下,使用表达式目录树中的代码。 看看这个问题



文章来源: LINQ dynamic property in select