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