I am facing issue while trying to query SQLCE database in my Windows Phone Mango application.

I get exception when I execute

foreach (var item in myDataContext.MyTable.Select(item => item))

The column name is not valid. [ Node name (if any) = t0,Column name = version ]

Strangely, when I execute query based on any individual column, it works fine

foreach (var item in myDataContext.MyTable.Select(item => item.SomeColumn))

Any idea what could be wrong here?

link|improve this question

79% accept rate
Is your version column the primary key? – Tigran Jan 29 at 18:33
I don't have a version column – Haris Hasan Jan 29 at 18:35
feedback

3 Answers

up vote 1 down vote accepted

I installed LINQ to SQL Debug Visualizer to find out what query exactly is being generated behind the scene and it was

{SELECT [t0].[version], [t0].[ID], [t0].[Volume], ... similarly rest of the columns FROM [MyTable] AS [t0]

This was strange because I didn't had version column in my table (ever). I looked into my model and I found this column defined

[Column(IsVersion = true)]
private Binary version;

I removed column by commenting out these two lines and re-ran the app. Newly generated SQL didn't had any version column and my query worked fine.

I am using SQLCEMangoCodeGenerator for generating LINQ to SQL classes. I guess error is in this tool because of which it generated an extra column which I didn't have in my table

link|improve this answer
Try using the SQL Server Compact Toolbox to generate the DataContext! – ErikEJ Jan 30 at 8:18
feedback

Your LINQ to SQL model may be out of date. Perhaps you modified the name of a column after the model was made (a column other than SomeColumn)

Try updating the model.

link|improve this answer
No that was not the reason. I found the reason.. answering in a minute – Haris Hasan Jan 29 at 19:02
feedback

I was having the same issue with the "SQLCEMangoCodeGenerator" tool.

I started to use the "SQL Server Compact Toolbox" tool and I haven't had any issues: http://visualstudiogallery.msdn.microsoft.com/0e313dfd-be80-4afb-b5e9-6e74d369f7a1/

(search for "NEW: DataContext" on the above website for a screen shot. Once you've installed the Extension, click the "SQL Server Compact Toolbox" in the Tools menu)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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