Hi guys,
I have 2 table, 1-to-x.
Every time I load the x-table with...
DataLoadOptions options = new DataLoadOptions();
options.LoadWith<Auktion>(a => a.Artikel);
my performance lose is killing me. Without the DataLoadOption my query runs ~30ms. With the Option it runs ~400ms by 1-to-30 data rows. (I get a single row from table one).
What's to do now? Ideas?