I believe I have noticed a bug and it's a significant one.
In your readme you have this:
context.All("SELECT * FROM Cars WHERE Name LIKE %@0%", "Lotus");
But this causes an object ref error because there are no single quotes around the expression.
But, when I try this:
var ads = context.All("select * from myTable where Title like '%@0%'","Vis");
The parameter is ignored.
Don't supposed you can fix this?
I believe I have noticed a bug and it's a significant one.
In your readme you have this:
context.All("SELECT * FROM Cars WHERE Name LIKE %@0%", "Lotus");
But this causes an object ref error because there are no single quotes around the expression.
But, when I try this:
var ads = context.All("select * from myTable where Title like '%@0%'","Vis");
The parameter is ignored.
Don't supposed you can fix this?