Exemplo n.º 1
0
 public ODataCommand(ODatabase database, string commandText, bool isIdempotent)
 {
     _database = database;
     _params = new ODataParameterCollection();
     IsIdempotent = isIdempotent;
     CommandText = commandText;
 }
Exemplo n.º 2
0
 public ODataCommand(ODatabase database)
 {
     _database = database;
     _params = new ODataParameterCollection();
     IsIdempotent = true;
 }