Class RoutineTypeDescriptor
Provides the means to describe the mapping relationship between a routine and a .NET type.
Inheritance
System.Object
    RoutineTypeDescriptor
  Implements
Namespace: Paradigm.ORM.Data.Descriptors
Assembly: Paradigm.ORM.Data.dll
Syntax
public class RoutineTypeDescriptor : object, IRoutineTypeDescriptor
  Constructors
| Improve this Doc View SourceRoutineTypeDescriptor(Type)
Initializes a new instance of the RoutineTypeDescriptor class.
Declaration
public RoutineTypeDescriptor(Type type)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Type | type | The type.  | 
      
Properties
| Improve this Doc View SourceCatalogName
Gets the name of the database catalog.
Declaration
public virtual string CatalogName { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Parameters
Gets a list of column parameter descriptors for all the parameters.
Declaration
public virtual List<IParameterPropertyDescriptor> Parameters { get; }
  Property Value
| Type | Description | 
|---|---|
| List<IParameterPropertyDescriptor> | 
RoutineName
Gets the name of the routine.
Declaration
public virtual string RoutineName { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
SchemaName
Gets the name of the database schema.
Declaration
public virtual string SchemaName { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Type
Gets the mapping type.
Declaration
public virtual Type Type { get; }
  Property Value
| Type | Description | 
|---|---|
| Type | 
TypeName
Gets the name of the type.
Declaration
public virtual string TypeName { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Methods
| Improve this Doc View SourceToString()
Returns a 
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| System.String | A   |