C# Class ZocBuild.Database.TypedDatabaseObject

Represents a database object with a specific type on a specific database server, database, and schema.
Inheritance: DatabaseObject
Mostra file Open project: Zocdoc/ZocBuild.Database Class Usage Examples

Public Methods

Method Description
TypedDatabaseObject ( string serverName, string databaseName, string schemaName, string objectName, DatabaseObjectType objectType ) : System

Instantiates a database object with the given identifiers.

Method Details

TypedDatabaseObject() public method

Instantiates a database object with the given identifiers.
public TypedDatabaseObject ( string serverName, string databaseName, string schemaName, string objectName, DatabaseObjectType objectType ) : System
serverName string The name of the database server.
databaseName string The name of the database.
schemaName string The name of the schema.
objectName string The name of the object.
objectType DatabaseObjectType The type of the object.
return System