Resolve IJetOptions for design time services. (#94)

pull/97/head v3.1.0-alpha.4
Laurents Meyer 5 years ago committed by GitHub
parent 3595734d47
commit 3235e3ce41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,8 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using EntityFrameworkCore.Jet.Diagnostics.Internal;
using EntityFrameworkCore.Jet.Infrastructure.Internal;
using EntityFrameworkCore.Jet.Internal;
using EntityFrameworkCore.Jet.Scaffolding.Internal;
using EntityFrameworkCore.Jet.Storage.Internal;
using Microsoft.EntityFrameworkCore.Design;
@ -31,6 +33,7 @@ namespace EntityFrameworkCore.Jet.Design.Internal
.AddSingleton<IRelationalTypeMappingSource, JetTypeMappingSource>()
.AddSingleton<IDatabaseModelFactory, JetDatabaseModelFactory>()
.AddSingleton<IProviderConfigurationCodeGenerator, JetCodeGenerator>()
.AddSingleton<IAnnotationCodeGenerator, JetAnnotationCodeGenerator>();
.AddSingleton<IAnnotationCodeGenerator, JetAnnotationCodeGenerator>()
.AddSingleton<IJetOptions, JetOptions>();
}
}
Loading…
Cancel
Save