C# Class DropkicKExample.infrastructure.app.persistence.DatabaseContext

The data context for the application
Inheritance: DbContext, IDataContext
Mostra file Open project: ferventcoder/presentations Class Usage Examples

Public Methods

Method Description
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.

Protected Methods

Method Description
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.

Private Methods

Method Description
InitializeCustomOptions ( ) : void

Initializes the custom options.

Method Details

DatabaseContext() public method

Initializes a new instance of the DatabaseContext class.
public DatabaseContext ( ) : System.Data.Entity
return System.Data.Entity

DatabaseContext() public method

Initializes a new instance of the DatabaseContext class.
public DatabaseContext ( string connectionStringName ) : System.Data.Entity
connectionStringName string Name of the connection string.
return System.Data.Entity

OnModelCreating() protected method

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.
return void