DataContext.GetTable<'TEntity> Method ()
.NET Framework (current version)
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)
Return Value
Type: System.Data.Linq.Table<'TEntity>A collection of objects defined by the TEntity parameter.
Type Parameters
- TEntity
The type of the objects to be returned.
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.
.NET Framework
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Show: