Interface IRoutineTypeDescriptor
Provides an interface to describe the mapping relationship between a routine and a .NET type.
Namespace: Paradigm.ORM.Data.Descriptors
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface IRoutineTypeDescriptor
Properties
| Improve this Doc View SourceCatalogName
Gets the name of the database catalog.
Declaration
string CatalogName { get; }
Property Value
Type | Description |
---|---|
System.String |
Parameters
Gets a list of column parameter descriptors for all the parameters.
Declaration
List<IParameterPropertyDescriptor> Parameters { get; }
Property Value
Type | Description |
---|---|
List<IParameterPropertyDescriptor> |
RoutineName
Gets the name of the routine.
Declaration
string RoutineName { get; }
Property Value
Type | Description |
---|---|
System.String |
SchemaName
Gets the name of the database schema.
Declaration
string SchemaName { get; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets the mapping type.
Declaration
Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
TypeName
Gets the name of the type.
Declaration
string TypeName { get; }
Property Value
Type | Description |
---|---|
System.String |