コード例 #1
0
 public static UpdateContext <T> Build <T>() where T : class
 {
     return(new UpdateContext <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); })));
 }
コード例 #2
0
 public static FilterContainer <T> Build <T>() where T : class
 {
     return(new FilterContainer <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); })));
 }
コード例 #3
0
 public static QueryDescriptor <T> Build <T>() where T : class
 {
     return(new QueryDescriptor <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); })));
 }