I Would like to convert the following SQL query in its LINQ
to Entity version:
select
geometry::UnionAggregate(geometries.GeometryBounds)
from
( select
GeometryBounds
from
Province where id in ( 1, 2 )
union all
select
GeometryBounds
from
Region where id in ( 1, 2 )
union all
select
GeometryBounds
from
Country where id in ( 1, 2 )
) as geometries
In LINQ union all functional provided by Collection.Concat() method.