C# Class Dibware.StoredProcedureFramework.Base.StoredProcedureBase

Inheritance: IStoredProcedure
Exibir arquivo Open project: dibley1973/StoredProcedureFramework

Public Methods

Method Description
DoesTypeInheritsFromThis ( Type type ) : bool

Determines if the specified type inherits from this object type.

GetTwoPartName ( ) : string

Gets the name of the two part.

SetProcedureName ( string procedureName ) : void

Sets the procedure name.

SetSchemaName ( string schemaName ) : void

Sets the schema name.

Protected Methods

Method Description
HasProcedureName ( ) : bool
TryInitializeFromAttributesInternal ( ) : void

Private Methods

Method Description
EnsureProcedureHasName ( ) : void
TrySetProcedureNameFromNameAttribute ( Type type ) : void
TrySetSchemaNameFromSchemaAttribute ( Type type ) : void

Method Details

DoesTypeInheritsFromThis() public static method

Determines if the specified type inherits from this object type.
public static DoesTypeInheritsFromThis ( Type type ) : bool
type System.Type The type.
return bool

GetTwoPartName() public method

Gets the name of the two part.
public GetTwoPartName ( ) : string
return string

HasProcedureName() protected method

protected HasProcedureName ( ) : bool
return bool

SetProcedureName() public method

Sets the procedure name.
procedureName
public SetProcedureName ( string procedureName ) : void
procedureName string Name of the procedure.
return void

SetSchemaName() public method

Sets the schema name.
schemaName
public SetSchemaName ( string schemaName ) : void
schemaName string The name of the schema.
return void

TryInitializeFromAttributesInternal() protected method

protected TryInitializeFromAttributesInternal ( ) : void
return void