我有一个用 EF 5.0.0 映射的数据库
我在一些列表中显示数据。我的数据以“经典方式”检索:
using (myContext db = new myContext())
{
var products = db.products.Select(p => p).ToList();
}
我必须尽可能多地这样做,
有什么办法可以动态地做到这一点?:
using (myContext db = new myContext())
{
type currentType = myTable1Type
var currentList = db.currentType.Select(p => p).ToList();
}