public static UpdateContext <T> Build <T>() where T : class { return(new UpdateContext <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); }))); }
public static FilterContainer <T> Build <T>() where T : class { return(new FilterContainer <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); }))); }
public static QueryDescriptor <T> Build <T>() where T : class { return(new QueryDescriptor <T>(new ExpressionParser((entityType, name) => { return PocoHelper.FormatColumn(entityType, name); }))); }