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