C# Класс Ctc.Ods.Data.OdsContext

Наследование: DbContext
Показать файл Открыть проект

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

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

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

Метод Описание
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.

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

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

Define database views and keys for the CourseDescription objects

DefineCourseMappings ( DbModelBuilder modelBuilder ) : void

Define entity mappings for the Course class

DefineFootnoteMappings ( DbModelBuilder modelBuilder ) : void

Define entity mappings for the Footnote class

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

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

public OdsContext ( ) : System.Data.Entity
Результат 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.
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