HistoryContext - конструктор
[Эта страница относится к документации к Entity Framework 6. Последняя версия доступна в составе пакета Entity Framework NuGet. Дополнительные сведения об Entity Framework см. в разделе msdn.com/data/ef.]
Инициализирует новый экземпляр класса HistoryContext. Если вы создаете производный контекст журнала, в общем случае вы предоставляете конструктор, который принимает те же параметры и передает их базовому конструктору.
Пространство имен: System.Data.Entity.Migrations.History
Сборка: EntityFramework (в EntityFramework.dll)
Синтаксис
'Декларация
<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")> _
Public Sub New ( _
existingConnection As DbConnection, _
defaultSchema As String _
)
'Применение
Dim existingConnection As DbConnection
Dim defaultSchema As String
Dim instance As New HistoryContext(existingConnection, _
defaultSchema)
[SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public HistoryContext(
DbConnection existingConnection,
string defaultSchema
)
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2214:DoNotCallOverridableMethodsInConstructors")]
public:
HistoryContext(
DbConnection^ existingConnection,
String^ defaultSchema
)
[<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")>]
new :
existingConnection:DbConnection *
defaultSchema:string -> HistoryContext
public function HistoryContext(
existingConnection : DbConnection,
defaultSchema : String
)
Параметры
- existingConnection
Тип: System.Data.Common.DbConnection
Существующее соединение, которое будет использоваться новым контекстом.
- defaultSchema
Тип: System.String
Схема по умолчанию для перенесенной модели. Эта схема будет использоваться для таблицы журнала миграций, если в OnModelCreating не настроена другая схема.