如何将属性选择器的字符串表示形式转换为lambda表达式?
输入格式为:
"Child.Name"
我需要将它转换为在OrderBy子句中使用的谓词;
query.OrderBy(x => x.Child.FirstOrDefault().Name);
例如,是否可能有一个解决方案,如果属性不是集合,则可以使用标准属性或字段;
"Quantity"
会创建一个谓词,例如;
x => x.Quantity
编辑:
只是试图改写上面的问题,如果我可以改变输入字符串,是否可以执行;
"Child.FirstOrDefault().Name"
as
x => x.Child.FirstOrDefault().Name
在OrderBy中?
答案 0 :(得分:0)
我认为您首先需要使用Activator类型按名称获取类的实例:
var child = System.Activator.CreateInstance(Type.GetType("Assembly", "Child"));
然后,您可以使用GetProperty按名称获取该媒体资源:
var childType = (typeof)child;
var name = childType.GetProperty("Name");
然后您可以将这些类型传递给您的查询。
或者,您可以使用the LINQ Predicate Builder library。
答案 1 :(得分:0)
有一个应用程序可以解决您的问题。试一试,告诉我一些事情。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// Punto de entrada principal para la aplicación.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
List<Parent> Parents = new List<Parent>();
List<Parent> orderedParents = Parents.Cast<Parent>().OrderBy(x => x.Cast<Child>().Select(y => y.myName)).ToList();
}
}
public class Parent: IQueryable
{
List<Child> child = new List<Child>();
#region Miembros de IQueryable
public Type ElementType
{
get { throw new NotImplementedException(); }
}
public System.Linq.Expressions.Expression Expression
{
get { throw new NotImplementedException(); }
}
public IQueryProvider Provider
{
get { throw new NotImplementedException(); }
}
#endregion
#region Miembros de IEnumerable
public System.Collections.IEnumerator GetEnumerator()
{
throw new NotImplementedException();
}
#endregion
}
public class Child: Parent
{
public string myName;
}
}
答案 2 :(得分:0)
以下内容将返回集合上属性的字符串值:
string propertyValue = source.GetType()
.GetProperty(stringProperty)
.GetValue(query.FirstOrDefault(), null) as string;