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

The data context for the application
Inheritance: DbContext, IDataContext
Afficher le fichier Open project: ferventcoder/presentations Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode 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

Méthode Description
InitializeCustomOptions ( ) : void

Initializes the custom options.

Method Details

DatabaseContext() public méthode

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

DatabaseContext() public méthode

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

OnModelCreating() protected méthode

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.
Résultat void