DataContext.GetTable<TEntity> Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a collection of objects of a particular type, where the type is defined by the TEntity parameter.
Assembly: System.Data.Linq (in System.Data.Linq.dll)
This method is the main entry point for querying. When a strongly typed DataContext is created, new generated properties encapsulate calls to this method. For example, a Customers property is generated that returns GetTable<Customer>.
If there is no collection for a particular type, an exception is thrown.
For information about using a local database in your Windows Phone application, see Local database for Windows Phone 8.