FieldInfo Constructor (String, String, Type, Boolean, Boolean, Boolean, Boolean, Int32, Int32, Byte, Byte) |
Initializes a new instance of the
FieldInfo class.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic FieldInfo(
string name,
string containingObjectName,
Type dataType,
bool isPrimaryKey,
bool isForeignKey,
bool isReadOnly,
bool isNullable,
int fieldIndex,
int maxLength,
byte scale,
byte precision
)
Public Sub New (
name As String,
containingObjectName As String,
dataType As Type,
isPrimaryKey As Boolean,
isForeignKey As Boolean,
isReadOnly As Boolean,
isNullable As Boolean,
fieldIndex As Integer,
maxLength As Integer,
scale As Byte,
precision As Byte
)
Parameters
- name
- Type: System.String
The name. - containingObjectName
- Type: System.String
Name of the containing object. - dataType
- Type: System.Type
Type of the data. - isPrimaryKey
- Type: System.Boolean
if set to true [is primary key]. - isForeignKey
- Type: System.Boolean
if set to true [is foreign key]. - isReadOnly
- Type: System.Boolean
if set to true [is read only]. - isNullable
- Type: System.Boolean
if set to true [is nullable]. - fieldIndex
- Type: System.Int32
Index of the field. - maxLength
- Type: System.Int32
Length of the max. - scale
- Type: System.Byte
The scale. - precision
- Type: System.Byte
The precision.
See Also