I'm struggling with loading a grid with all of the customers in my database. I don't want to load any of the related entities.
I believe that I need to turn off lazy-loading but cant seem to find a mechanism.
I'm using self -servicing structure
code looks like:
Nlm.BaseBO.CollectionClasses.CustomerCollection customers = new Nlm.BaseBO.CollectionClasses.CustomerCollection();
customers.GetMulti(null);
ultraGrid1.DataSource = customers;
Can someone suggest how to do this?
thanks