Version:
NHibernate-1.2.1.GA
Error Encountered:
"The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect."
When:
Using the JetDriver, when there is more than 1 conditions in from clause.
How to resolve:
Change line 155 of JetDriver.cs
Line 155: transformed = string.Join(",", blocks);
to
Line 155: transformed = "from " + string.Join(",", blocks);
================
Couldn't access Jira to submit the issue, so I post it here in case anyone encountered this issue and need help with it.
|