First time here? Check out the FAQ!
If I have query like
Query.All<T>().Where(e=>e.Field!="asd").ToArray()
It will not include NULL values. In SQL this is expected, but in .Net is not.
asked Dec 04 '14 at 04:43
pil0t 207●57●57●63
edited Dec 04 '14 at 04:44
Have not tested this myself but what happens when you do?
Query.All<t>().Where(e=>e.Field!="asd" || e.Field == null).ToArray()
Hi pil0t
I've already registered a task for this issue.
answered Dec 11 '14 at 02:20
Alexey Kulakov 772●2●5
Hi! Do you have any progress by this problem?
Once you sign in you will be able to subscribe for any updates here
This is DataObjects.Net support site.
Tags:
query-translation ×8 null ×3
Asked: Dec 04 '14 at 04:43
Seen: 5,227 times
Last updated: Mar 12 '15 at 08:47
DataObjects.Net roadmap is open for discussion.Share your vision
Unable to materialize back local collection item
[closed] Query by interface exception
Strange exception "Sequence contains no elements" on query
Query fails: "Cannot perform an aggregate function on an expression containing an aggregate or a subquery."
Union uses extra parentheses
Where clause with FirstOrDefault() and enum does not work on empty EntitySet
System.NotSupportedException when comparing result of ternary conditional operator
Trying to query for a manually-added entity returns null
Internal error: Source column list contains null values
powered by OSQA
Have not tested this myself but what happens when you do?
Query.All<t>().Where(e=>e.Field!="asd" || e.Field == null).ToArray()