请想象在一个类中有以下两个属性:
public string Category { get; set; }
public string DisplayCategory => "SomeCategory"
现在我只想收集所有未计算属性本身的PropertyInfo
个对象
var properties = type.GetProperties();
var serializables = properties.Where(p => p.CanRead, true));
如果属性是计算属性,我如何通过Reflection
找到我可以忽略它?
我想这样做的原因是因为我使用Expression Trees
自动创建通过Entity Framework 6
处理的查询。实体框架仅为非计算属性创建列,因此无法查询计算属性。
请参阅This Article
答案 0 :(得分:0)
我使用DelegateDecompiler,当前我必须手动将每个计算出的属性名称添加到自定义配置中。
如果下面的ShouldDecompile方法可以自动确定应反编译哪些属性,那就太好了
public class CustomDelegateDecompilerConfiguration : Configuration {
public static CustomDelegateDecompilerConfiguration Instance { get; } = new CustomDelegateDecompilerConfiguration();
public static void Enable() => Configuration.Configure(Instance);
public CustomDelegateDecompilerConfiguration() {
RegisterDecompileableMember<Person, string>(x => x.Name);
RegisterDecompileableMembers(typeof(string), nameof(string.IsNullOrWhiteSpace));
RegisterDecompileableMembers(typeof(CustomComputedMethods), new[] {
nameof(CustomComputedMethods.PersonName),
nameof(CustomComputedMethods.MonthInteger),
nameof(CustomComputedMethods.WholeMonthsBetween),
nameof(CustomComputedMethods.WholeYearsBetween)
});
}
public HashSet<MemberInfo> DecompileableMembers { get; } = new HashSet<MemberInfo>();
public override bool ShouldDecompile(MemberInfo memberInfo) => memberInfo.GetCustomAttributes(typeof(DecompileAttribute), true).Length > 0
|| memberInfo.GetCustomAttributes(typeof(ComputedAttribute), true).Length > 0
|| memberInfo.GetCustomAttributes(typeof(CompilerGeneratedAttribute), true).Length > 0
|| DecompileableMembers.Contains(memberInfo)
//*** Would be nice if auto detection was possible with non-existing methods below ***
//|| memberInfo.AutoProperty (One with a backing field automatically generated by the compiler)
//|| memberInfo.HasExpressionBody (One implemented using the => (lambda) syntax)
//|| memberInfo.HasFunctionBody (One implemented using the normal {...} syntax)
;
public override void RegisterDecompileableMember(MemberInfo prop) => DecompileableMembers.Add(prop);
public void RegisterDecompileableMember<T, TResult>(Expression<Func<T, TResult>> expression) where T : class => RegisterDecompileableMember(expression.Body.GetMemberInfo());
public void RegisterDecompileableMembers(Type type, params string[] memberNames) {
foreach(var tmi in type.GetMembers().Where(mi => memberNames.Contains(mi.Name))) {
DecompileableMembers.Add(tmi);
}
}
public void RegisterDecompileableMembers<T>(params string[] memberNames) where T : class => RegisterDecompileableMembers(typeof(T), memberNames);
}
一个示例类:
public class Person {
public string FirstName { get; set; }
public string LastName { get; set; }
public string AlternativeFirstName { get; set; }
public string Name => string.Concat(AlternativeFirstName == string.Empty ? FirstName : AlternativeFirstName, " ", LastName);
}
一些扩展方法示例:
public static class CustomComputedMethods {
public static string PersonName(string firstName, string lastName, string knownAs) => (knownAs ?? firstName).Trim() + " " + lastName.Trim();
public static long MonthInteger(this DateTime d) => checked(d.Year * 12 + d.Month);
public static int WholeMonthsBetween(this DateTime d, DateTime maxDate) => (int)(maxDate.MonthInteger() - d.MonthInteger() - (d.Day > maxDate.Day ? 1 : 0));
public static int WholeYearsBetween(this DateTime d, DateTime maxDate) => d.WholeMonthsBetween(maxDate) / 12;
}