ABPStudy.MyProject.EntityFrameworkCore.Seed.Host.InitialHostDbBuilder.Create C# (CSharp) Method

Create() public method

public Create ( ) : void
return void
        public void Create()
        {
            new DefaultEditionCreator(_context).Create();
            new DefaultLanguagesCreator(_context).Create();
            new HostRoleAndUserCreator(_context).Create();
            new DefaultSettingsCreator(_context).Create();

            _context.SaveChanges();
        }
    }
InitialHostDbBuilder