次の方法で共有


EntityContext コンストラクター

定義

オーバーロード

EntityContext()

サービス名から派生した既定のスキーマ名を使用して、 の EntityContext 新しいインスタンスを初期化します。

EntityContext(String)

指定schemaした を使用して のEntityContext新しいインスタンスを初期化します。

EntityContext(String, String)

指定schemaした と nameOrConnectionStringを使用して、 EntityContext の新しいインスタンスを初期化します。

EntityContext()

サービス名から派生した既定のスキーマ名を使用して、 の EntityContext 新しいインスタンスを初期化します。

protected EntityContext ();
Protected Sub New ()

適用対象

EntityContext(String)

指定schemaした を使用して のEntityContext新しいインスタンスを初期化します。

protected EntityContext (string schema);
new Microsoft.WindowsAzure.Mobile.Service.EntityContext : string -> Microsoft.WindowsAzure.Mobile.Service.EntityContext
Protected Sub New (schema As String)

パラメーター

schema
String

この DbContextに使用するスキーマ名。 サービス名 (スキーマ名として を使用して取得 ServiceSettingsDictionary できます) をお勧めします。

適用対象

EntityContext(String, String)

指定schemaした と nameOrConnectionStringを使用して、 EntityContext の新しいインスタンスを初期化します。

protected EntityContext (string schema, string nameOrConnectionString);
new Microsoft.WindowsAzure.Mobile.Service.EntityContext : string * string -> Microsoft.WindowsAzure.Mobile.Service.EntityContext
Protected Sub New (schema As String, nameOrConnectionString As String)

パラメーター

schema
String

この DbContextに使用するスキーマ名。 サービス名 (スキーマ名として を使用して取得 ServiceSettingsDictionary できます) をお勧めします。

nameOrConnectionString
String

使用する接続文字列の名前または接続文字列。

適用対象