Ejemplo n.º 1
0
 public static JoinClauseNode Join <TSource, TTarget>(JoinType type, ValueNode joinExpr)
 {
     return(new JoinClauseNode(
                new FSharpList <ITableIdentifier>(new TableIdentifier <TSource>(), FSharpList <ITableIdentifier> .Empty),
                new TableIdentifier <TTarget>(),
                type,
                joinExpr.ToOption()));
 }
Ejemplo n.º 2
0
 public static JoinClauseNode Join <TSource1, TSource2, TTarget>(JoinType type, ValueNode joinExpr)
 {
     return(new JoinClauseNode(
                ListModule.OfArray(new ITableIdentifier[] {
         new TableIdentifier <TSource1>(),
         new TableIdentifier <TSource2>()
     }),
                new TableIdentifier <TTarget>(),
                type,
                joinExpr.ToOption()));
 }