In LINQ to SQL, I can create a repository dynamically using DataContext.GetTable. Is there a similar way to do this in Entity Framework 4 other than de
DataContext.GetTable
DbContext has method for this:
DbContext
var set = context.Set();