Any ideas as to why this query compiles, but then throws this runtime error:

Argument expression is not valid

I know I could change my db model, but in this case it's not possible. Any ideas how to get something like this working? Not even sure what this would be called. Thanks.

DBContext db = new DBContext();
var books = (from b in db.BOOKS
             select new
             {
                 b.ID,
                 b.NAME,
                 AuthorName = db.PEOPLEs.Where(p=>p.ID==b.AUTHOR).First().USER_ID,
             }).ToList();
link|improve this question
2  
DbContext is entity framework 4, not LinqToSql. – David B Mar 7 '11 at 20:40
What does the table look like? – Mark Avenius Mar 7 '11 at 20:45
I went ahead and updated the title to accurately reflect the issue. – VulgarBinary Mar 7 '11 at 20:57
feedback

4 Answers

up vote 1 down vote accepted

I've found I have the best luck with complex inner queries by using let expressions. This does a subselect and allows you greater flexibility to bind an element from a subselect. HOWEVER, notice that I am only doing a First() on the author assignment in the anonymous object. This is because if you do a First().PropertyName and First yields a null value it will blow up.

Good luck and double check syntax. I don't have your full object set so I cannot generate a fully working demo, however, this was tested with an object tree that I have on one of my own projects.

var books = (
        from b in db.BOOKs
        let author = (from a in db.PEOPLEs
                      where b.AUTHOR == a.ID
                      select a)
        select new
        {
            ID = b.ID,
            NAME = b.Name,
            Author = author.First()
        }
    ).ToList();    

foreach(var x in books)
{
    string AuthorName = x.Author.USER_ID;
    //Do other stuff
}
link|improve this answer
thx, this worked nicely. – brad oyler Mar 7 '11 at 21:07
feedback

If you have a look on your code, you have

DBContext db = new DBContext();
var books = (from b in db.BOOKS
select new
{
    b.ID,
    b.NAME,
    AuthorName = db.PEOPLEs.Where(p=>p.ID==b.AUTHOR).First().USER_ID, <<-- Here coma
}).ToList();

It is expecting another parameter there, just remove it and it sould pass

:)

link|improve this answer
added formatting to this post, code block was not all marked as code. – VulgarBinary Mar 7 '11 at 21:10
actually linq doesn't care about the ending comma. similar to an array expression. – brad oyler Mar 7 '11 at 21:39
@brad: but C# compiler does – abatishchev Mar 8 '11 at 9:03
feedback

So, the final solution was:

var books = (
    from b in db.BOOKs
    let author = (from a in db.PEOPLEs
                    where b.AUTHOR == a.ID
                    select a)
    select new
    {
        ID = b.ID,
        NAME = b.Name,
        Author = author.First().USER_ID
    }
).ToList();

Thanks!

link|improve this answer
feedback

Anyway, First<T>() also have an overload First<T>(Predicate<T>), i.e.:

AuthorName = db.PEOPLEs.First(p=>p.ID==b.AUTHOR).USER_ID

You can use LINQ in methods styles:

var books = (from b in db.BOOKS
             let author = db.PEOPLEs.Where(p => p.ID == b.AUTHOR).First()
             select new
             {
                 b.ID,
                 b.NAME,
                 AuthorName = author.USER_ID,
             }).ToList();
link|improve this answer
1  
What an elaborate use of a comment. – Brad Christie Mar 7 '11 at 20:46
this returned the same error. – brad oyler Mar 7 '11 at 21:38
@Brad: Because I can :D – abatishchev Mar 8 '11 at 9:05
feedback

Your Answer

 
or
required, but never shown

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