public SelectManager(int?top, IncludeFields <TableType> fieldsToInclude)
 {
     TopOrNull         = top;
     FieldsToInclude   = fieldsToInclude;
     tableInformation  = new TableInformation <TableType>();
     orderByStatements = new List <Tuple <Expression <Func <TableType, object> >, bool> >();
 }
 public DeleteManager()
 {
     tableInformation = new TableInformation <TableType>();
 }
示例#3
0
 public InsertManager()
 {
     tableInformation = new TableInformation <TableType>();
 }
示例#4
0
 public UpdateManager()
 {
     tableInformation = new TableInformation <TableType>();
     setExpressions   = new List <SetExpression <TableType> >();
 }