如何获取ObjectSet< T>在运行时的实体框架T是动态的?

编程入门 行业动态 更新时间:2024-10-28 17:28:24
本文介绍了如何获取ObjectSet< T>在运行时的实体框架T是动态的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

(注意,下面的代码只是例子,请不要评论为什么这是必要的,我会感谢一个确定的答案YES或NO,如果可能的话,如果不是很好。

(Note, the code below are just examples. Please don't comment on the why this is necessary. I would appreciate a definitive answer of YES or NO, like if it is possible then how? If not it's fine too. If the question is vague let me know also. Thanks!)

示例,我可以得到ObjectSet 下面的

Example, I can get ObjectSet<T> below:

ObjectSet<Users> userSet = dbContext.CreateObjectSet<Users>(); ObjectSet<Categories> categorySet = dbContext.CreateObjectSet<Categories>();

上面的代码工作正常。然而,我需要实体表是动态的,所以我可以在类型之间切换。像下面的东西

The code above works okay. However, I need the entity table to be dynamic so I can switch between types. Something like below.

//var type = typeof(Users); var type = typeof(Categories); Object<type> objectSet = dbContext.CreateObjectSet<type>();

但上面的代码将无法编译。

But the code above will not compile.

我想要的是或类似的东西:

What I'd like is something like, or anything similar:

//string tableName = "Users"; string tableName = "Categories"; ObjectSet objectSet = dbContext.GetObjectSetByTableName(tablename);

推荐答案

你可以在如何使用反射来调用通用方法?

var type = typeof(Categories); // or Type.GetType("Categories") if you have a string var method = dbContext.GetType.GetMethod("CreateObjectSet"); var generic = method.MakeGenericMethod(type); generic.Invoke(dbContext, null);

更多推荐

如何获取ObjectSet&lt; T&gt;在运行时的实体框架T是动态的?

本文发布于:2023-11-07 09:18:53,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1566072.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:实体   框架   动态   amp   ObjectSet

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!