Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug/Issue, Linq query fails, unless a "Where" clause is included #13

Open
ToddBooth opened this issue Jul 13, 2014 · 1 comment
Open

Comments

@ToddBooth
Copy link

If your Linq query does not have a "Where" clause, GDataDB gives an error that Select is not support..

Workaround: add a where class that does not match any rows.

I'm running Visual Studio 2013 Professional, with all updates.

I'm running the latest GDataDB 0.5.0 and latest GDataDB Linq 0.5.0.

Example of the where clause that I had to add:

        var rows = from row1 in tbl.AsQueryable()
                   where !row1.StudentId.Equals("12345")
                   select row1;

Todd Booth / University of Technology (Luleå, Sweden)

@mausch
Copy link
Owner

mausch commented Jul 17, 2014

Does the Google Spreadsheet API really support projections? If so, could you point me to the relevant documentation?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants