Ejemplo n.º 1
0
 private WhereClauseBuilder(WhereClauseBuilder <T> root)
 {
     _dialectSettings = root.DialectSettings;
     _tuples          = new List <KeyValuePair <string, string> >();
     _dynParms        = new DynamicParameters();
     _root            = root;
 }
Ejemplo n.º 2
0
 public WhereClauseBuilder(StorageDialectSettings dialectSettings)
 {
     _dialectSettings = dialectSettings ?? throw new ArgumentNullException(nameof(dialectSettings));
     _tuples          = new List <KeyValuePair <string, string> >();
     _dynParms        = new DynamicParameters();
     _root            = null;
 }