共用方式為


LocalDbConnectionFactory 建構函式

定義

多載

LocalDbConnectionFactory(String)

為指定的 LocalDb 版本建立連線處理站的新實例。 針對 SQL Server 2012 LocalDb,請使用 「v11.0」。 針對 SQL Server 2014 和更新版本的 LocalDb,請使用 「mssqllocaldb」。

LocalDbConnectionFactory(String, String)

為指定的 LocalDb 版本建立連線處理站的新實例。 針對 SQL Server 2012 LocalDb,請使用 「v11.0」。 針對 SQL Server 2014 和更新版本的 LocalDb,請使用 「mssqllocaldb」。

LocalDbConnectionFactory(String)

為指定的 LocalDb 版本建立連線處理站的新實例。 針對 SQL Server 2012 LocalDb,請使用 「v11.0」。 針對 SQL Server 2014 和更新版本的 LocalDb,請使用 「mssqllocaldb」。

public LocalDbConnectionFactory (string localDbVersion);
new System.Data.Entity.Infrastructure.LocalDbConnectionFactory : string -> System.Data.Entity.Infrastructure.LocalDbConnectionFactory
Public Sub New (localDbVersion As String)

參數

localDbVersion
String

要使用的 LocalDb 版本。

適用於

LocalDbConnectionFactory(String, String)

為指定的 LocalDb 版本建立連線處理站的新實例。 針對 SQL Server 2012 LocalDb,請使用 「v11.0」。 針對 SQL Server 2014 和更新版本的 LocalDb,請使用 「mssqllocaldb」。

public LocalDbConnectionFactory (string localDbVersion, string baseConnectionString);
new System.Data.Entity.Infrastructure.LocalDbConnectionFactory : string * string -> System.Data.Entity.Infrastructure.LocalDbConnectionFactory
Public Sub New (localDbVersion As String, baseConnectionString As String)

參數

localDbVersion
String

要使用的 LocalDb 版本。

baseConnectionString
String

要用於 'Initial Catalog'、'Data Source' 和 'AttachDbFilename' 以外的資料庫選項的連接字串。 呼叫 CreateConnection 時,'Initial Catalog' 和 'AttachDbFilename' 會以資料庫名稱為基礎,在前面加上此字串。 'Data Source' 將會根據 LocalDbVersion 引數來設定。

適用於