return new MultipleResultExecution(simpledbOperations);
} else if(method.isModifyingQuery()) {
throw new IllegalArgumentException(
"Modifying query not supported. Please use repository methods for update operations.");
} else {
return new SingleResultExecution(simpledbOperations);
}
}