protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            string schema = "Contoso";

            if (OperatingSystem.IsMacOs())
            {
                schema = null;
            }

            var config = new DbContextConfig();

            config.ApplicationContextConfig(modelBuilder, schema);
        }
        protected override void OnModelCreating(ModelBuilder builder)
        {
            base.OnModelCreating(builder);
            string dbSchema = "Contoso";

            if (OperatingSystem.IsMacOs())
            {
                dbSchema = null;
            }

            var config = new DbContextConfig();

            config.SecureApplicationContextConfig(builder, dbSchema);
        }