5 references to SqlUnion
System.Data.Linq (5)
SqlClient\Query\QueryConverter.cs (2)
1406SqlUnion union = new SqlUnion(left, right, true); 1417SqlUnion union = new SqlUnion(left, right, false);
SqlClient\Query\SqlBinder.cs (2)
1593union = new SqlUnion(sel, union, true /* Union All */); 1605union = new SqlUnion(sel, union, true /* Union All */);
SqlClient\Query\SqlDuplicator.cs (1)
335return new SqlUnion(this.Visit(su.Left), this.Visit(su.Right), su.All);