Exemplo n.º 1
0
 public static FromStateProxy CreateFor(IFromState state)
 {
     return(new FromStateProxy(state));
 }
Exemplo n.º 2
0
 public static IJoinState InnerJoin(this IFromState state, string table)
 {
     Argument.NotNull(state, "state");
     return(state.Join(table, JoinType.Inner));
 }