C# 클래스 Dibware.StoredProcedureFramework.IntegrationTests.DbContextTests.Context.IntegrationTestDbContext

상속: Dibware.StoredProcedureFrameworkForEF.StoredProcedureDbContext
파일 보기 프로젝트 열기: dibley1973/StoredProcedureFramework 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
IntegrationTestDbContext ( DbConnection existingConnection, bool contextOwnsConnection ) : System.Data.Common

Constructs a new IntegrationTestDbContext instance using the existing connection to connect to a database. The connection will not be disposed when the context is disposed if contextOwnsConnection is false.

IntegrationTestDbContext ( string nameOrConnectionString ) : System.Data.Common

Initializes a new instance of the IntegrationTestDbContext 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.

Typically, this method is called only once when the first instance of a derived context is created. The model for that context is then cached and is for all further instances of the context in the app domain. This caching can be disabled by setting the ModelCaching property on the given ModelBuidler, but note that this can seriously degrade performance. More control over caching is provided through use of the DbModelBuilder and DbContextFactory classes directly.

메소드 상세

IntegrationTestDbContext() 공개 메소드

Constructs a new IntegrationTestDbContext instance using the existing connection to connect to a database. The connection will not be disposed when the context is disposed if contextOwnsConnection is false.
public IntegrationTestDbContext ( DbConnection existingConnection, bool contextOwnsConnection ) : System.Data.Common
existingConnection System.Data.Common.DbConnection An existing connection to use for the new context.
contextOwnsConnection bool /// If set to true the connection is disposed when the context is disposed, otherwise the caller must dispose the connection. ///
리턴 System.Data.Common

IntegrationTestDbContext() 공개 메소드

Initializes a new instance of the IntegrationTestDbContext class.
public IntegrationTestDbContext ( string nameOrConnectionString ) : System.Data.Common
nameOrConnectionString string The name or connection string.
리턴 System.Data.Common

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.
Typically, this method is called only once when the first instance of a derived context is created. The model for that context is then cached and is for all further instances of the context in the app domain. This caching can be disabled by setting the ModelCaching property on the given ModelBuidler, but note that this can seriously degrade performance. More control over caching is provided through use of the DbModelBuilder and DbContextFactory classes directly.
protected OnModelCreating ( DbModelBuilder modelBuilder ) : void
modelBuilder DbModelBuilder The builder that defines the model for the context being created.
리턴 void