I want make this in linq to sql
select isnull(x.COD, '1') as 'NCOD'
from table x
I have tried this.
From x In table
select NCOD = x.COD ?? '1';
I'm using LINQPad 4 and VB Expression. but LINQPAd says that I can't use ? expression (No se puede usar aquí el carácter '?' in Spanish)
Any idea?
PD: sorry for my English.