Our updates are now working ... 55 ms vs. 25000 ms before, thanks everyone! Now we have run into one other minor question/issue:
We have some small classes in our code which require relatively complex inline SELECT statements. We had been using a basic data abstraction layer that provided the capability to send a SQL statement to any RDBMS and retrieve the data using a datareader or dataset. We don't really care how the data comes out, but would like the ability to retrieve this data via a SQL statement, even if we have to access it like: datareader.fields[5].value or similar.
Can we do this with LLBLGen, or should we maintain our separate DAL for these situations? Alternately, would it be better to put these queries (~50 of them) into stored procs? My team would prefer to keep the SQL inline since they contend it's easier to read and maintain (we deliver our product to hundreds of clients, but rarely change their database).
Thank you,
Josh Lindenmuth