示例#1
0
 public static FromAsStateProxy CreateFor(IFromAsState state)
 {
     return(new FromAsStateProxy(state));
 }
示例#2
0
 public static IJoinState FullOuterJoin(this IFromAsState state, string table)
 {
     Argument.NotNull(state, "state");
     return(state.Join(table, JoinType.FullOuter));
 }