Hello, I'm using LLBLGen Pro 2.6 with ASP.NET 2.0 (C#)
I would like to know if it is possible to query the database using LLBLGen just with a SQL querystring.
so, if the string is
sqlString = "SELECT * FROM Clients"
I want to be able to do something like this
var resultSet = LLBLGenMethod(sqlString)
or even using transactions
var resultSet = LLBLGenMethod(sqlString, transaction)
The point is that I could do this using Entities and filtering them, but I have a lot of sqlStrings all over the place so it will be easier if I can do this on a first stage.
Thanks!
Enrique