Ian Ringrose
Ian Ringrose

Reputation: 51897

How do I use Union in linq (vb.net)?

I know how to call the Union extension method, e.g.

Dim r = productFirstChars.Union(customerFirstChars)

However I do I do this with the Linq syntax, e.g.

from productFirstChars select ????

Upvotes: 1

Views: 4032

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1500155

You can't - not all LINQ operators are supported in query expressions, and Union is one of those that isn't. (VB has language support for more query operators than C#, as it happens.) See the documentation for a list of supported query clauses.

Upvotes: 5

Related Questions