DbContext运行时动态附加上一个dbset
Posted jimson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DbContext运行时动态附加上一个dbset相关的知识,希望对你有一定的参考价值。
参考
Creating DbSet Properties Dynamically
1
|
DbSet<MyEntity> set = context.Set<MyEntity>(); |
或
1
|
DbSet set = context.Set( typeof ( MyEntity ) ); |
或者利用反射,通过实现DbContext的OnModelCreating方法,参考
Dynamically Adding DbSet Properties in DbContext for Entity Framework Code First
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public class MyAppContext : DbContext { protected override void OnModelCreating(DbModelBuilder modelBuilder) { CustomAssemblySection configSection = (CustomAssemblySection)System.Configuration.ConfigurationManager.GetSection( "CustomAssemblySection" ); foreach (CustomAssembly customAssembly in configSection.Assemblies) { Assembly assembly = Assembly.Load(customAssembly.Name); foreach (Type type in assembly.ExportedTypes) { if (type.IsClass) { MethodInfo method = modelBuilder.GetType().GetMethod( "Entity" ); method = method.MakeGenericMethod( new Type[] { type }); method.Invoke(modelBuilder, null ); } } } base .OnModelCreating(modelBuilder); } } |
以上是关于DbContext运行时动态附加上一个dbset的主要内容,如果未能解决你的问题,请参考以下文章
我可以克隆一个 IQueryable 以在另一个 DbContext 的 DbSet 上运行吗?
.Net使用配置文件 DbContext 动态加载 DbSet