Ask Your Question
0

How can custom type converters be registered automatically in C# Entity Framework 6?

asked 2022-06-23 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-07-21 13:00:00 +0000

devzero gravatar image

Custom type converters can be registered automatically in C# Entity Framework 6 by using the DbConfiguration class.

Step 1: Create a class that inherits from DbConfiguration.

public class MyDbConfiguration : DbConfiguration { public MyDbConfiguration() { SetDefaultHistoryContext(connection => new HistoryContext(connection));

  SetProviderServices("System.Data.SqlClient", 
    SqlProviderServices.Instance); 

  SetDatabaseInitializer(new MyDbContextInitializer()); 

  AddInterceptor(new MyCommandInterceptor()); 

  SetSpatialServicesProvider(SqlSpatialServices.
    Instance); 

  AddDefaultResolver(new MyDefaultResolver());

} }

Step 2: Set the DbConfigurationType attribute on your context.

[DbConfigurationType(typeof(MyDbConfiguration))] public class MyDbContext : DbContext { // DbContext code here }

Step 3: Add the following line to your application's initialization method.

DbConfiguration.SetConfiguration(new MyDbConfiguration());

Now, whenever a context is created that uses the MyDbContext class, it will automatically use the MyDbConfiguration class and register the custom type converters.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-06-23 11:00:00 +0000

Seen: 11 times

Last updated: Jul 21 '21