Exemple #1
0
 public DataObjectQuery()
 {
     _runtimeObject = new DataRuntimeObject <T>();
 }
Exemple #2
0
 public DataObjectCommand(string table = null, string primaryKey = null)
 {
     _runtimeObject   = new DataRuntimeObject <T>();
     _customTableName = table;
     _primaryKey      = _runtimeObject.GetPrimaryKey(primaryKey);
 }