C# 클래스 DropkicKExample.infrastructure.app.persistence.DatabaseContext

The data context for the application
상속: DbContext, IDataContext
파일 보기 프로젝트 열기: ferventcoder/presentations 1 사용 예제들

공개 메소드들

메소드 설명
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