We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
The text was updated successfully, but these errors were encountered:
Does the Google Spreadsheet API really support projections? If so, could you point me to the relevant documentation?
Sorry, something went wrong.
No branches or pull requests
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:
Todd Booth / University of Technology (Luleå, Sweden)
The text was updated successfully, but these errors were encountered: