在哪里可以找到MyGeneration常用的所有接口列表?
(我特别要求这个学习使用foreach循环遍历我的DataBase中的所有表)
答案 0 :(得分:0)
我希望您有一些识别实体类的常用方法(例如公共基类或实现的接口)。然后你可以做一个反射查询,如:
from t in typeof(Entity).Assembly.ExportedTypes
where typeof(Entity).IsAssignableFrom(t) || t.GetInterfaces.Any(i => i == typeof(CommonInterface))
select t
手头没有编译器,但这是一个大方向。
答案 1 :(得分:0)
如果您询问MyGeneration Code Generator,您可能需要找到数据库模型的接口here in the My Generation svn Repository