ClearDatabaseSchemaAlways<TContext> Constructors

Definition

Overloads

ClearDatabaseSchemaAlways<TContext>()

Initializes a new instance of the ClearDatabaseSchemaAlways<TContext> that will DELETE all resources from the default schema derived from the service name regardless of whether the model has changed.

ClearDatabaseSchemaAlways<TContext>(String)

Initializes a new instance of the ClearDatabaseSchemaAlways<TContext> class with a given schema.

ClearDatabaseSchemaAlways<TContext>()

Initializes a new instance of the ClearDatabaseSchemaAlways<TContext> that will DELETE all resources from the default schema derived from the service name regardless of whether the model has changed.

public ClearDatabaseSchemaAlways ();
Public Sub New ()

Applies to

ClearDatabaseSchemaAlways<TContext>(String)

Initializes a new instance of the ClearDatabaseSchemaAlways<TContext> class with a given schema.

public ClearDatabaseSchemaAlways (string schema);
new Microsoft.WindowsAzure.Mobile.Service.ClearDatabaseSchemaAlways<'Context (requires 'Context :> System.Data.Entity.DbContext)> : string -> Microsoft.WindowsAzure.Mobile.Service.ClearDatabaseSchemaAlways<'Context (requires 'Context :> System.Data.Entity.DbContext)>
Public Sub New (schema As String)

Parameters

schema
String

The schema to DELETE all resources from regardless of whether the model has changed.

Applies to