Hi,
I'm having a question which poses a performance issue to me.
I have a sql view that gets joins a few tables. This view does not have any conditions ('WHERE' clause) and I add the required conditions by using IPredicateExpression filter in my code.
Is it better to add filters to a generic view
or
is it better to create multiple views with the 'WHERE' clause within them and then just call Fill() method of the particular typed view? (This eliminates instantiating a PredicateExpression object).
I'm not sure if there will be any difference among the two, but at least this will help me learn more about LLBLGen!
Using LLBLGen Pro 2.0 with VS.NET 2003.
Thanks
Arun