ABPStudy.MyProject.EntityFrameworkCore.Seed.Host.InitialHostDbBuilder.Create C# (CSharp) Метод

Create() публичный Метод

public Create ( ) : void
Результат void
        public void Create()
        {
            new DefaultEditionCreator(_context).Create();
            new DefaultLanguagesCreator(_context).Create();
            new HostRoleAndUserCreator(_context).Create();
            new DefaultSettingsCreator(_context).Create();

            _context.SaveChanges();
        }
    }
InitialHostDbBuilder