Hi,
I am trying to increase the performance of some statistics method I have written.
It's a method on OrderItems, at the moment ca. 5000 but will be growing VERY fast, and I need to read their OrderItem.ProductName to display in the reports. I am now prefetching the ProductEntity, but only for the Field "Name". How can I make the property > OrderItem.ProductName (Which maps on Product.Name, defined in the Designer of LLBL) only retrieve some kind of ProductSlimEntity which has ProductId and Name as Properties?
Any pointers and hints are more than welcome.
I found some info in: http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=9765&HighLight=1 but couldn't find out how to implement it in this scenario for Designer defined properties.
Since the app will be running at a provider Memory AND Cpu are an issue, cpu for response time and Mem for a limit at the provider.
Thanks,
Gab