Beispiel #1
0
 public SqlQuerySourceAttribute GetAttribute(SystemIdent attrIdent)
 {
     return(FindAttribute(attrIdent) ?? AddAttribute(attrIdent));
 }
Beispiel #2
0
 public QuerySystemCondition(SystemIdent ident, ExpressionOperation operation) :
     base(operation)
 {
     Ident = ident;
 }
Beispiel #3
0
 public SqlQuerySourceAttribute FindAttribute(SystemIdent ident)
 {
     return(Attributes.FirstOrDefault(a => a.Def == null && a.Ident == ident));
 }
 public SqlQueryGroupAttribute(SqlQuerySource source, SystemIdent attrIdent) : base(source, attrIdent)
 {
 }