Describe the enhancement
As some users are eager to maximize the underlying data store internal functions, the only way to do this is to introduce a possibilty for the user to write their own literal query expression on top of the object/fluent-based implementations.
var where = new LiteralQueryField("[Id] BETWEEN 10 AND 100");
var people = connection.Query<Person>(where);
In which the above query would return all the people from the Person table where the ID is 10 to 100.
Describe the enhancement
As some users are eager to maximize the underlying data store internal functions, the only way to do this is to introduce a possibilty for the user to write their own literal query expression on top of the object/fluent-based implementations.
In which the above query would return all the people from the
Persontable where theIDis10to100.