我想强制我域中的所有 DateTime 为 sql server 上的 datetime2。我知道我可以使用:
Property(x => x.Field).HasColumnType("datetime2");
在我的 EntityTypeConfiguration 派生类中。
但我想编写一些不那么“冗长”的代码。我尝试以下方法:
public static void SetDateTimeColumnType<T>(EntityTypeConfiguration<T> etc) where T : class {
Type t = typeof(T);
foreach (PropertyInfo pi in t.GetProperties(BindingFlags.Public | BindingFlags.Instance)) {
if (pi.PropertyType.Name == "DateTime") {
etc.Property(x => (DateTime)pi.GetValue(x)).HasColumnType("datetime2");
}
}
}
但我得到以下异常:
The expression 'x => Convert(value(EFVIPRepository.ContextUtilities+<>c__DisplayClass0`1[ValkirIP.Domain.Entities.IPRight]).pi.GetValue(x))'
is not a valid property expression.
The expression should represent a property: C#: 't => t.MyProperty' VB.Net: 'Function(t) t.MyProperty'.
Use dotted paths for nested properties: C#: 't => t.MyProperty.MyProperty' VB.Net: 'Function(t) t.MyProperty.MyProperty'.
我认为我真正的问题是如果可能的话,如何从属性名称构建“属性表达式”。
先感谢您
===== 编辑 =====
我也试试
Expression expr = Expression.Property(System.Linq.Expressions.Expression.Variable(t), pi);
etc.Property((Expression<Func<T, DateTime>>)expr).HasColumnType("datetime2");
除了以下例外:
Impossible d'effectuer un cast d'un objet de type 'System.Linq.Expressions.PropertyExpression' en type 'System.Linq.Expressions.Expression`1[System.Func`2[ValkirIP.Domain.Entities.IPRight,System.DateTime]]'.