我正在尝试做的是 wirte linq 表达式,它允许我List<PropertyInfo>
通过自定义属性对某些对象进行排序,例如:
public class SampleClass{
[CustomAttribute("MyAttrib1",1)]
public string Name{ get; set; }
[CustomAttribute("MyAttrib2",1)]
public string Desc{get;set;}
[CustomAttribute("MyAttrib1",2)]
public int Price{get;set;}
}
自定义属性.cs:
public class CustomAttribute: Attribute{
public string AttribName{get;set;}
public int Index{get;set;}
public CustomAttribute(string attribName,int index)
{
AttribName = attribName;
Index = index;
}
}
到目前为止,我能够从名为 SampleClass 的类中获取所有属性:
List<PropertyInfo> propertiesList = new List<PropertyInfo>((IEnumerable<PropertyInfo>)typeof(SampleClass).GetProperties());
到目前为止,我尝试对此进行排序propertiesList
(顺便说一句不起作用):
var sortedPropertys = propertiesList
.OrderByDescending(
(x, y) => ((CustomAttribute) Attribute.GetCustomAttribute((PropertyInfo) x, typeof (CustomAttribute))).AttribName
.CompareTo((((CustomAttribute) Attribute.GetCustomAttribute((PropertyInfo) y, typeof (CustomAttribute))).AttribName ))
).OrderByDescending(
(x,y)=>((CustomAttribute) Attribute.GetCustomAttribute((PropertyInfo) x, typeof (CustomAttribute))).Index
.CompareTo((((CustomAttribute) Attribute.GetCustomAttribute((PropertyInfo) y, typeof (CustomAttribute))).Index)))
.Select(x=>x);
输出列表应该是(我只会用 PropertyInfo.Name 告诉它):
property name: Name,Price,Desc
我的问题是:有可能这样做吗?如果是的话,我该如何正确地做到这一点?
如果您有任何问题,请提出(我会尽力回答每一个不确定性)。我希望对问题的描述就足够了。
感谢提前:)