You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
35 lines
1.4 KiB
using System;
|
|
using System.Data.Entity;
|
|
using System.Data.Entity.ModelConfiguration;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace NFine.Data
|
|
{
|
|
public class NFineDbContext : DbContext
|
|
{
|
|
public NFineDbContext()
|
|
: base("NFineDbContext")
|
|
{
|
|
this.Configuration.AutoDetectChangesEnabled = false;
|
|
this.Configuration.ValidateOnSaveEnabled = false;
|
|
this.Configuration.LazyLoadingEnabled = false;
|
|
this.Configuration.ProxyCreationEnabled = false;
|
|
}
|
|
|
|
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
|
{
|
|
string assembleFileName = Assembly.GetExecutingAssembly().CodeBase.Replace("NFine.Data.DLL", "NFine.Mapping.DLL").Replace("file:///", "");
|
|
Assembly asm = Assembly.LoadFile(assembleFileName);
|
|
var typesToRegister = asm.GetTypes()
|
|
.Where(type => !String.IsNullOrEmpty(type.Namespace))
|
|
.Where(type => type.BaseType != null && type.BaseType.IsGenericType && type.BaseType.GetGenericTypeDefinition() == typeof(EntityTypeConfiguration<>));
|
|
foreach (var type in typesToRegister)
|
|
{
|
|
dynamic configurationInstance = Activator.CreateInstance(type);
|
|
modelBuilder.Configurations.Add(configurationInstance);
|
|
}
|
|
base.OnModelCreating(modelBuilder);
|
|
}
|
|
}
|
|
}
|