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