vote up 1 vote down star
1

Could someone help me with this exception? I don't understand what it means or how to fix it... It is an SqlException with the following message:

All queries combined using a UNION, INTERSECT or EXCEPT operator must have an equal number of expressions in their target lists.

I get it when running a query in psudo code looking like this:

// Some filtering of data
var query = data.Subjects
            .Where(has value)
            .Where(has other value among some set of values);

// More filtering, where I need to have two different options
var a = query
            .Where(some foreign key is null);
var b = query
            .Where(some foreign key is not null)
            .Where(and that foreign key has a property which is what I want);
query = a.Union(b);

// Final filter and then get result as a list
var list = query
            .Where(last requirement)
            .ToList();

If I remove the a.Union(b) parts, it runs without the exception. So I know the error is there. But why do I get it? And how can I fix it? Am I doing something too crazy here? Have I misunderstood how to use the Union thing?

Basically what I have is some entities which have a foreign key to some other entity. And I need to get all the entities which either have that foreign key set to null or where that foreign entity fullfills some requirements.

Please help, cause I'm totally lost here =/

flag

What is the exception? – David B Mar 16 at 15:39
It's an SqlException. I updated the question =) – Svish Mar 16 at 18:45
Are you sure none of the queries is projecting anything (select)? I haven't run into this, but right now I don't recall if the Union I have done were linq2sql or against already retrieved data :( – Freddy Rios Mar 17 at 2:11
But I don't see how that should be a problem, cause the queries work fine without the Union. Meaning, it has everything it needs and doesn't fail because of missing values or such. I have already ran into that error before, and this is not it :p – Svish Mar 17 at 6:58
Re question; Yes and yes. Is that all sorted? I was AFK... – Marc Gravell Mar 17 at 12:25
show 3 more comments

7 Answers

vote up 2 vote down check

Since this looks like a problem with the generated SQL, you should try to use either an SQL Profiler, or use this code for DebuggerWritter class to write the SQL to your Output Window in Visual Studio.

The SQL error is normally caused by the fields retrieved for UNION is not the same for the 2 queries. For example, if the first query might have 3 fields, but the second query has 4 fields, this error will occur. So, seeing the generated SQL will definitely help in this case.

link|flag
vote up 1 vote down

Judging from the SQL error you listed you may be experiencing the same issue I was. Basically when Linq to SQL queries that use the Concat or Union extension method on two different queries it appears that there is a bug in Linq to SQL which optimizes each projection separately without regard to the fact that the projection must stay the same in order to accomplish the SQL Union.

References:

LINQ to SQL produces incorrect TSQL when using UNION or CONCAT

Linq to SQL Union Same Fieldname generating Error

If this happens to be your problem as well I've found a solution that is working for me as shown below.

var queryA = 
    from a in context.TableA
    select new 
    {
        id,
        name,
        onlyInTableA,
    }

var queryB = 
    from b in context.TableB
    let onlyInTableA = default(string)
    select new 
    {
        id,
        name,
        onlyInTableA,
    }

var results = queryA.Union(queryB).ToList();
link|flag
Note, that you have to define a new let statement for each computed value even if the actual literal values are the same in order to get this technique to work. So far this is the only reasonable solution I've found to the problem. – jpierson Jul 30 at 18:07
vote up 0 vote down

Can you perhaps write it in a single query?

.Where(row => row.ForeignKey == null || row.ForeignKey.SomeCondition);

There are also ways of merging expressions (OrElse), but that isn't trivial.

Not sure where the error comes from, though!

edit: haven't tested it, but this should be logically equivalent to a UNION:

public static IQueryable<T> WhereAnyOf<T>(
    this IQueryable<T> source,
    params Expression<Func<T, bool>>[] predicates)
{
    if (source == null) throw new ArgumentNullException("source");
    if (predicates == null) throw new ArgumentNullException("predicates");
    if (predicates.Length == 0) return source.Where(row => false);
    if (predicates.Length == 1) return source.Where(predicates[0]);

    var param = Expression.Parameter(typeof(T), "row");
    Expression body = Expression.Invoke(predicates[0], param);
    for (int i = 1; i < predicates.Length; i++)
    {
        body = Expression.OrElse(body,
            Expression.Invoke(predicates[i], param));
    }
    return source.Where(Expression.Lambda<Func<T, bool>>(body, param));
}
link|flag
problem is that it is not just SomeCondition, but SomeCondition and also use of the WhereBetween method, which you helped me with a while ago, and stuff like that. (stackoverflow.com/questions/553443/…) – Svish Mar 16 at 15:25
Perhaps you could use WhereAnyOf (above) with the main part of WhereBetween (or a version of WhereBetween that returns the predicate, rather than calling source.Where(predicate)) – Marc Gravell Mar 16 at 15:27
that looks promising and interesting... will try it out first thing tomorrow! (work is over, and have a bus to catch!) – Svish Mar 16 at 15:29
Would swapping the OrElse with an AndAlso make it an WhereAllOf? And would returing the Expression.Lambda-and-so-forth directly instead of having it in a where, make it possible to combine them easier? Like if I could do two WhereAllOf, and then combine those with the WhereAnyOf and then do Where? – Svish Mar 17 at 9:05
and adjust the if statements in the beginning of course... – Svish Mar 17 at 9:06
show 2 more comments
vote up 0 vote down

query = a.Union(b);

Not a good idea to mutate captured variables... Likely the cause of the error.

UPDATE: ok not

Here is another idea. The hint is in the error message.

var a = query
         .Where(some foreign key is null)
         .Select(x => x);

Or play by adding another 'fake' Where till they do become equal :)

link|flag
mutate captured variables? – Svish Mar 16 at 15:28
You are right in that the re-use introduces confusion, but note that none of those is captured... – Marc Gravell Mar 16 at 15:29
He means - have var query2 = a.Union(b) and work with query2 downstream. However, I very-much doubt that this is the problem on this occasion, since it isn't actually captured. – Marc Gravell Mar 16 at 15:31
@svish: can you test what marc said? That is what I meant. I suspect it being IQueryable may cause a problem, just a hunch :) – leppie Mar 16 at 16:17
I don't see what is supposed to be a problem here. I know about problems in foreach loops and such, but here I just update variable kind of? Not much different than doing string s = "test"; s = s.ToUpper();. Or am I wrong? – Svish Mar 16 at 18:49
show 1 more comment
vote up 0 vote down

I would call data.GetCommand(query) and analyze the resulting DbCommand (especially the generated SQL string). That should give you a clue to what goes wrong.

There is no projection going on anywhere so I would expect both target lists to be the same.

You could try to reduce your query to a smaller one that still doesn't work. Start with query.Union(query) (this should at least work). Than add your Where calls one by one to see when it stops working.

It must be one of your Where calls that adds extra columns to your select list.

link|flag
already looked at the sql, although I got it during debugging. Copied it and pasted it into sql manager in a new query. And I get the same error there. Problem is the query is quite large, and I am not very stable on reading sql... – Svish Mar 17 at 13:15
Edited my answer to include some suggestions.. – rwwilden Mar 18 at 6:51
vote up 0 vote down

Are you by any chance passing in a value to the 'select' side in a variable, or are you returning the same field more than once? SP1 introduced a bug where it tries to 'optimize' out such things and that can cause union queries to break (due to the query parts 'optimizing' out different passed-in params).

If you post your actual query rather than pseudo code it makes it easier to identify if this is the case.

(And a workaround if this is the case is to materialize the individual parts first and then do a client-side (L2O) union).

link|flag
vote up 0 vote down

jpierson has the problem summarised correctly.
I also had the problem, this time caused by some literals in the select statement:
Dim results = (From t in TestDataContext.Table1 _
Where t.ID = WantedID _
Select t.name, SpecialField = 0, AnotherSpecialField = 0, t.Address).Union _
From t in TestDataContext.Table1 _
Where t.SecondID = WantedSecondID _
Select t.name, SpecialField = 1, AnotherSpecialField = 0, t.Address)

The first sub-query of "SpecialField = 0" and the "AnotherSpecialField = 0" were optimised, resulting in one field instead of two being used in the union, which will obviously fail.
I had to change the first query so that the SpecialField & AnotherSpecialField had different values, much like in the second sub-query.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.