예제 #1
0
 public static CypherWhere Property(this CypherWhere cypherWhere, string name)
 {
     return((CypherWhere)cypherWhere.Append(".{0}", name));
 }
예제 #2
0
 public static CypherWhere Property(this CypherWhere cypherWhere, string name, bool optionalDefault)
 {
     return((CypherWhere)cypherWhere.Append(".{0}{1}", name, optionalDefault ? "?" : "!"));
 }
예제 #3
0
 public static CypherWhere Property(this CypherWhere cypherWhere, Enum name, bool optionalDefault)
 {
     return(Property(cypherWhere, name.ToString(), optionalDefault));
 }
예제 #4
0
 public static CypherWhere Property(this CypherWhere cypherWhere, Enum name)
 {
     return(Property(cypherWhere, name.ToString()));
 }