Interface IParameterPropertyDescriptor
Provides an interface to describe the mapping relationship between a parameter and a property.
Namespace: Paradigm.ORM.Data.Descriptors
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface IParameterPropertyDescriptor
Properties
| Improve this Doc View SourceDataType
Gets the type of the data.
Declaration
string DataType { get; }
Property Value
Type | Description |
---|---|
System.String |
IsInput
Gets a value indicating whether this property is input or output property.
Declaration
bool IsInput { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
MaxSize
Gets the maximum size.
Declaration
long MaxSize { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
NotNullableType
Gets the inner type of the property if the property is nullable; will be the same as Type if Type is not nullable.
Declaration
Type NotNullableType { get; }
Property Value
Type | Description |
---|---|
Type |
ParameterName
Gets the name of the column.
Declaration
string ParameterName { get; }
Property Value
Type | Description |
---|---|
System.String |
Precision
Gets the numeric precision.
Declaration
byte Precision { get; }
Property Value
Type | Description |
---|---|
System.Byte |
PropertyInfo
Gets the property information.
Declaration
PropertyInfo PropertyInfo { get; }
Property Value
Type | Description |
---|---|
PropertyInfo |
PropertyName
Gets the type of the data.
Declaration
string PropertyName { get; }
Property Value
Type | Description |
---|---|
System.String |
Scale
Gets the numeric scale.
Declaration
byte Scale { get; }
Property Value
Type | Description |
---|---|
System.Byte |
Type
Gets the property type.
Declaration
Type Type { get; }
Property Value
Type | Description |
---|---|
Type |