EntityField2 Constructor (String, String, Type, Int32, Byte, Byte) |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public EntityField2(
string name,
string objectAlias,
Type dataType,
int maxLength,
byte precision,
byte scale
)
Public Sub New (
name As String,
objectAlias As String,
dataType As Type,
maxLength As Integer,
precision As Byte,
scale As Byte
)
Parameters
- name
- Type: SystemString
Name - objectAlias
- Type: SystemString
The object alias. - dataType
- Type: SystemType
.NET Type of the data. - maxLength
- Type: SystemInt32
The maximum length of the field or 0 if not relevant - precision
- Type: SystemByte
The precision to use or 0 if not relevant. - scale
- Type: SystemByte
The scale to use or 0 if not relevant.
Remarks Use this CTor for fields mapped onto a derived table with the alias objectAlias
See Also