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.
17 lines
515 B
17 lines
515 B
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Conventions;
|
|
|
|
namespace Znyc.Recruitment.Admin.Commons.EfDbContext
|
|
{
|
|
public class DefaultModelBuilder : ModelBuilder
|
|
{
|
|
public DefaultModelBuilder(ConventionSet conventions) : base(conventions)
|
|
{
|
|
}
|
|
|
|
public override ModelBuilder ApplyConfiguration<TEntity>(IEntityTypeConfiguration<TEntity> configuration)
|
|
{
|
|
return base.ApplyConfiguration(configuration);
|
|
}
|
|
}
|
|
}
|