Exemplo n.º 1
0
 public static bool BooleanField(this TypedEntity coll, string fieldKey, string valueField, bool recursive)
 {
     return(coll.Field <bool>(fieldKey, valueField, recursive));
 }
Exemplo n.º 2
0
 public static object Field(this TypedEntity coll, string fieldKey)
 {
     return(coll.Field(fieldKey, false));
 }
Exemplo n.º 3
0
 public static Int32 NumberField(this TypedEntity coll, string fieldKey, string valueField, bool recursive)
 {
     return(coll.Field <Int32>(fieldKey, valueField, recursive));
 }
Exemplo n.º 4
0
 public static bool BooleanField(this TypedEntity coll, string fieldKey)
 {
     return(coll.Field <bool>(fieldKey, false));
 }
Exemplo n.º 5
0
 public static string StringField(this TypedEntity coll, string fieldKey, string valueField)
 {
     return(coll.Field <string>(fieldKey, valueField, false));
 }
Exemplo n.º 6
0
 public static Int32 NumberField(this TypedEntity coll, string fieldKey, string valueField)
 {
     return(coll.Field <Int32>(fieldKey, valueField, false));
 }
Exemplo n.º 7
0
 public static string StringField(this TypedEntity coll, string fieldKey, bool recursive)
 {
     return(coll.Field <string>(fieldKey, recursive));
 }
Exemplo n.º 8
0
 public static T Field <T>(this TypedEntity coll, string fieldKey, string valueField, bool recursive)
 {
     return((T)coll.Field(fieldKey, valueField, recursive));
 }
Exemplo n.º 9
0
 public static T Field <T>(this TypedEntity coll, string fieldKey, string valueField)
 {
     return((T)coll.Field(fieldKey, valueField, false));
 }
Exemplo n.º 10
0
 public static dynamic DynamicField(this TypedEntity coll, string fieldKey, string valueField, bool recursive)
 {
     return(coll.Field(fieldKey, valueField, recursive));
 }
Exemplo n.º 11
0
 public static dynamic DynamicField(this TypedEntity coll, string fieldKey, string valueField)
 {
     return(coll.Field(fieldKey, valueField, false));
 }