Exemple #1
0
 public static StringField String(string attributeName)
 {
     return(new StringField(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.TEXT, attributeName)));
 }
Exemple #2
0
 public static GuidField State(string attributeName)
 {
     return(new UserStateIdField(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.STRING, attributeName)));
 }
Exemple #3
0
 public static Int32Field OrgUnit(string attributeName)
 {
     return(new Int32Field(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.INT32, attributeName)));
 }
Exemple #4
0
 public static Int64Field Integer(string attributeName)
 {
     return(new Int64Field(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.INT64, attributeName)));
 }
Exemple #5
0
 public static DoubleField Double(string attributeName)
 {
     return(new DoubleField(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.DOUBLE, attributeName)));
 }
Exemple #6
0
 public static DateTimeField DateTime(string attributeName)
 {
     return(new DateTimeField(AttributeFieldTypePrefixes.Add(AttributeFieldTypePrefixes.STRING, attributeName)));
 }