This question is locked. New answers and comments are not allowed.
Hi,
ive got problem with a query:
| var query = from contact in scope.Extent<Contact>() |
| where contact.Status.Equals(Common.Enums.Status.Active.ToString()) |
| select new |
| { |
| contact.Id, |
| contact.Description, |
| contact.Phone1, |
| contact.Fax, |
| contact.Email1 |
| }; |
after this i got exception:
Exception Message "Unknown column 'Active' in 'where clause'"
is it mine fault or something is wront with orm?