I am using a LINQ statement that selects from various tables information I need to fill some Post / Post Comment style records. I'm getting a funny exception saying that the object must implement IConvertible when I try to iterate the record set. The funny part about it is that it seems to only occur when the anonymous type I'm using to hold the data contains more than 2 generic collections.

//select friend timeline posts posts
var pquery = from friend in fquery
    join post in db.game_timeline on friend.id equals post.user_id
    //join user in db.users on post.friend_id equals user.id into userGroup
    //join game in db.games on post.game_id equals game.game_id into gameGroup
    select new
    {
        Friend = friend,
        Post = post,

        Game = from game in db.games
          where game.game_id == post.game_id
          select game,

        Recipient = from user in db.users
          where user.id == post.user_id
          select user,

        Comments = from comment in db.timeline_comments
          where comment.post_id == post.id
          join users in db.users on comment.user_id equals users.id
          select new { User = users, Comment = comment }
    };

(Note: I am using MYSQL Connector/Net so things like Take and FirstOrDefault and things like that are not supported within the LINQ statements themselves, I have opted to use those methods during iteration as it does not raise an exception there)

The problem is, when all 3 fields (Game, Recipient, and Comments) are present. I get the exception "Object must implement IConvertible". BUT if I remove ANY one of the 3 field assignments (doesn't matter which one), it works just fine. Anybody know what's going on here?

Thanks in advance!

Ryan.

link|improve this question

how are you accessing pquery – Aducci May 5 '11 at 20:27
I've tried multiple ways, but currently I'm using a foreach loop – SilverX May 5 '11 at 20:33
7  
I would first try to run the same code against MsSQL and if it passes I would report it as a bug of MySQL connector because I found several related questions on the web describing the similar issue only when working with MySQL. For example this: stackoverflow.com/questions/5741048/… – Ladislav Mrnka May 5 '11 at 21:45
1  
All suggestions seem rigth, but what is really weird is the fact that removing ANY of the variables makes it work. I would start with Ladislavs suggestion of trying the code against MSSQL. – Ernesto May 6 '11 at 14:44
1  
I have managed to work around the issue by making a database change that enables me to select "Recipient" as an object rather than an entity collection (the reason it was a collection before was because it had the possibility to be null and a bunch of the Linq extensions are not fully supported prior to query execution ex. 'FirstOrDefault()'). This allows me to select the other 2 collections with no exception being raised. Also allowed me to truncate everything into a single statement bringing query execution to ~200ms (on a remote database) XD! – SilverX May 8 '11 at 15:47
show 10 more comments
feedback

1 Answer

up vote 1 down vote accepted

This is a guess, but I think your anonymous type might be attempting to duck-type to an enum when you've got more than two queries. If that's happening, then you'll get this complaint about not implementing IConvertible, as enum implements IConvertible, and your anonymous type (now derrived from enum) does not implement the interface.

link|improve this answer
It would seem strange that an entity containing normal properties and a set of collection properties would be considered an enum when it's semantics suggest that it's the furthest thing from one. Very strange indeed. I plus voted your answer because this could very well be exactly what's happening whether it makes sense to me or not lol. Should I find out any more I'll mark it as an answer. – SilverX May 12 '11 at 19:58
I agree; it would be very strange. I'm not very knowledgeable about how the semantics of an object are analyzed for dynamic typing in C#, but the values should be incremental (I think) as opposed to C/C++ where the programmer can choose the enum values. We're still in the territory of guesses here, but it doesn't necessarily need to be casting to enum -- it could be any class that implements IConvertible. – Joe May 12 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

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