C# Класс DropkicKExample.infrastructure.app.persistence.DatabaseContext

The data context for the application
Наследование: DbContext, IDataContext
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
DatabaseContext ( ) : System.Data.Entity

Initializes a new instance of the DatabaseContext class.

DatabaseContext ( string connectionStringName ) : System.Data.Entity

Initializes a new instance of the DatabaseContext class.

Защищенные методы

Метод Описание
OnModelCreating ( DbModelBuilder modelBuilder ) : void

This method is called when the model for a derived context has been initialized, but before the model has been locked down and used to initialize the context. The default implementation of this method does nothing, but it can be overridden in a derived class such that the model can be further configured before it is locked down.

Приватные методы

Метод Описание
InitializeCustomOptions ( ) : void

Initializes the custom options.

Описание методов

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

Initializes a new instance of the DatabaseContext class.
public DatabaseContext ( ) : System.Data.Entity
Результат System.Data.Entity

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

Initializes a new instance of the DatabaseContext class.
public DatabaseContext ( string connectionStringName ) : System.Data.Entity
connectionStringName string Name of the connection string.
Результат System.Data.Entity

OnModelCreating() защищенный Метод

This method is called when the model for a derived context has been initialized, but before the model has been locked down and used to initialize the context. The default implementation of this method does nothing, but it can be overridden in a derived class such that the model can be further configured before it is locked down.
protected OnModelCreating ( DbModelBuilder modelBuilder ) : void
modelBuilder DbModelBuilder The builder that defines the model for the context being created.
Результат void