I\'m looking for an equivalent of the DataContext.GetTable in Entity Framework. I\'ve found the ObjectContext.CreateQuery m
DataContext.GetTable
ObjectContext.CreateQuery
public IQueryable GetTable(T entity) where T : class { return context.CreateObjectSet(); }