コード例 #1
0
        /// <summary>
        /// Register required services for Emeraude localization.
        /// </summary>
        /// <param name="services"></param>
        /// <param name="options"></param>
        /// <returns></returns>
        public static IServiceCollection RegisterEmeraudeLocalization(this IServiceCollection services, EmOptions options)
        {
            if (!options.TestMode)
            {
                services.AddDbContext <LocalizationContext>(options =>
                                                            options.UseSqlite(
                                                                connectionString: LocalesDatabaseSqlLiteConnectionString,
                                                                sqliteOptionsAction: b => b.MigrationsAssembly(AssemblyInfo.GetAssembly().FullName)));
            }
            else
            {
                services.AddDbContext <LocalizationContext>(opt =>
                                                            opt.UseInMemoryDatabase(databaseName: "test_localization_database"));
            }

            services.AddScoped <ICurrentLanguageProvider, CurrentLanguageProvider>();
            services.AddScoped <ILocalizationContext, LocalizationContext>();
            services.AddScoped <ILocalizer, Localizer>();
            services.AddScoped <IEmLocalizer, Localizer>();
            services.AddScoped <ILanguageStore, LanguageStore>();

            if (options.ExecuteMigrations)
            {
                try
                {
                    var serviceProvider = services.BuildServiceProvider();
                    serviceProvider.GetService <LocalizationContext>().Database.Migrate();
                }
                catch (Exception)
                {
                }
            }

            return(services);
        }