C# Class Dibware.StoredProcedureFramework.Base.SqlFunctionBase

Show file 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.

SetFunctionName ( string sqlFunctionName ) : void

Sets the sql function name.

SetSchemaName ( string schemaName ) : void

Sets the schema name.

Protected Methods

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

Private Methods

Method Description
EnsureFunctionHasName ( ) : void
TrySetFunctionNameFromNameAttribute ( 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

HasFunctionName() protected method

protected HasFunctionName ( ) : bool
return bool

SetFunctionName() public method

Sets the sql function name.
sqlFunctionName sqlFunctionName
public SetFunctionName ( string sqlFunctionName ) : void
sqlFunctionName string Name of the SQL function.
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