You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
|
|
//namespace VOL.Entity.MappingConfiguration
|
|
//{
|
|
|
|
// public interface IEntityMappingConfiguration
|
|
// {
|
|
// void Map(ModelBuilder b);
|
|
// }
|
|
|
|
// public interface IEntityMappingConfiguration<T> : IEntityMappingConfiguration where T : class
|
|
// {
|
|
// void Map(EntityTypeBuilder<T> builder);
|
|
// }
|
|
|
|
// public abstract class EntityMappingConfiguration<T> : IEntityMappingConfiguration<T> where T : class
|
|
// {
|
|
// public abstract void Map(EntityTypeBuilder<T> b);
|
|
|
|
// public void Map(ModelBuilder b)
|
|
// {
|
|
// Map(b.Entity<T>());
|
|
// }
|
|
// }
|
|
|
|
// public static class ModelBuilderExtenions
|
|
// {
|
|
// private static IEnumerable<Type> GetMappingTypes(this Assembly assembly, Type mappingInterface)
|
|
// {
|
|
// return assembly.GetTypes().Where(x => !x.IsAbstract && x.GetInterfaces().Any(y => y.GetTypeInfo().IsGenericType && y.GetGenericTypeDefinition() == mappingInterface));
|
|
// }
|
|
|
|
// public static void AddEntityConfigurationsFromAssembly(this ModelBuilder modelBuilder, Assembly assembly)
|
|
// {
|
|
// var mappingTypes = assembly.GetMappingTypes(typeof(IEntityMappingConfiguration<>));
|
|
// foreach (var config in mappingTypes.Select(Activator.CreateInstance).Cast<IEntityMappingConfiguration>())
|
|
// {
|
|
// config.Map(modelBuilder);
|
|
// }
|
|
// }
|
|
// }
|
|
//} |