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