2

是的,我想创建一个List<T>并且我的 T 是用户定义的数据类型,即 POCO 类,例如 UserProfile。
为什么:我正在使用MvcJqGrid,我想编写一个通用代码来创建 Json 数据,所以在运行时我知道我需要从哪个类(表)中获取数据。

我的代码

public ActionResult TestGrid() 
{
    string spname = Request.Params["storedprocedurename"]; //spname = UserProfile 
    // i get this from the post data of MvcJqGrid i.e. user when create a jqgrid, in 
    // a view defines the table/spname from where data gets loaded in grid.
    MyEntities _context = new MYEntities();            
    List<UserProfile> userProfiles = _context.UserProfiles.ToList<UserProfile>();
    // here some code to create a json data and return 
}

所以这个 UserProfile 我在这里硬编码,如果我在 Request.params 中得到 RoleMaster(eg) 那么我该如何实现呢。

配置详情
entityFramework Version=5.0.0.0 数据库优先方法
mvc 4
MvcJqGrid 1.0.9
.net FrameWork 4.5

4

2 回答 2

1

如果 spName 是一个字符串,您可以通过以下方式获取类型:

Type genericType = Type.GetType(string.Format("YourNamespace.{0}", spName));

然后userProfiles下面将是List<UserProfile>使用代码的类型:

var method = _context.GetType().GetMember("Set")
                .Cast<MethodInfo>()
                .Where(x => x.IsGenericMethodDefinition)
                .FirstOrDefault();

var genericMethod = method.MakeGenericMethod(genericType);
dynamic invokeSet = genericMethod.Invoke(_context, null);

// this list will contain your List<UserProfile>
var userProfiles = Enumerable.ToList(invokeSet);

欲了解更多信息:

  1. 反射、Linq 和 DbSet
于 2013-03-11T12:06:26.590 回答
0

这将做到:

public ActionResult Index()
{
    string spname = Request.Params["storedprocedurename"];
    Type t = typeof(MYEntities)
        .Assembly
        .GetType(string.Format("<namespace>.{0}", spname);
    dynamic instance = Activator.CreateInstance(t);
    return View(ListData(instance));
}

private List<T> ListData<T>(T instance)
    where T : class
{
    MYEntities context = new MYEntities();
    return context.Set<T>().ToList();
}
于 2013-03-11T15:01:37.173 回答