예제 #1
0
 public void Visit(TableApply component)
 {
     sql.Append($" {(component.JoinType == TableApplyType.CrossApply ? "CROSS APPLY" : "OUTER APPLY")} (");
     component.ForeignTable.Accept(this);
     sql.Append($") AS [{((ISqlTable)component.ForeignTable).Alias}]");
 }
예제 #2
0
 public void Visit(TableApply component)
 {
     throw new NotImplementedException();
 }