NULL value using eSQL

Discussion of open issues, suggestions and bugs regarding Entity Framework support in ADO.NET Data providers
Post Reply
ies
Posts: 26
Joined: Thu 26 Feb 2009 08:10

NULL value using eSQL

Post by ies » Thu 11 Feb 2010 15:45

Hi, i'm using eSQL and i have a question

1.- ?Is possible use NULL value?

Can you show me an example?


thank,
________
Vapor Genie Vaporizer
Last edited by ies on Thu 24 Feb 2011 06:06, edited 1 time in total.

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Fri 12 Feb 2010 14:24

Here is a simple example:

Code: Select all

SELECT VALUE department FROM Depts as department WHERE department.Loc LIKE 'test' OR Department.Loc IS NULL ORDER BY department.Dname ASC;

Post Reply