LLBLGen 2.0.0.0 Final (July 2006)
Using SelfServicing
Issue:
I am trying to figure out how to limit the fields returned to an entity. We don't need to use views or typedlists. Specifically I want to be able to search via whatever fields I want in the WHERE clause, but not return EVERY field in the SELECT clause.
Viz:
SELECT table1.a, table1.b
WHERE
table1.c = 1
The issue is that our llblgen queries are returning a huge amount of data (because we have wide columns) to our business layer which is causing performance problems.
Can anyone suggest how to proceed this and provide any sample code?
Thanks
Balaji