Esempio n. 1
0
 public IJoinState Join(string table, JoinType joinType)
 {
     return(StateProxy.CreateFor(State.Join(table, joinType)));
 }
Esempio n. 2
0
 public IJoinState Join(QueryBase subquery, JoinType joinType)
 {
     return(StateProxy.CreateFor(State.Join(subquery, joinType)));
 }
Esempio n. 3
0
 public IFromState From(string table)
 {
     return(StateProxy.CreateFor(State.From(table)));
 }
Esempio n. 4
0
 public IFromState From(QueryBase subquery)
 {
     return(StateProxy.CreateFor(State.From(subquery)));
 }
Esempio n. 5
0
 public ISelectAsState As(string alias)
 {
     return(StateProxy.CreateFor(State.As(alias)));
 }
Esempio n. 6
0
 public ISelectState Select(string column)
 {
     return(StateProxy.CreateFor(State.Select(column)));
 }
Esempio n. 7
0
 public IOrderByState OrderBy(string column)
 {
     return(StateProxy.CreateFor(State.OrderBy(column)));
 }
Esempio n. 8
0
 public IJoinOnState On(PredicateBase predicate)
 {
     return(StateProxy.CreateFor(State.On(predicate)));
 }
Esempio n. 9
0
 public IOrderByInDirectionState InDirection(OrderDirection direction)
 {
     return(StateProxy.CreateFor(State.InDirection(direction)));
 }