What does DataContext.GetTable <TEntry> do?

I have a DataContext db

and I have an Entity class User

. So when the call System.Data.Linq.Table<User> table = db.GetTable<User>();

is called for the first time, it pulls data from the database immediately, is it using deferred execution or is the data already loaded from the database at initialization db

?

+2


a source to share


1 answer


Until you list the collection, no data is loaded



+5


a source







All Articles