E
Earl
When I create an expression column, I get the concatenation I'm looking for,
except for entries which have nulls. For example:
FullName.Expression = "FirstName + ' ' + MiddleInitial + ' ' + LastName"
If all of these columns return non-null values, I get the FullName as I
wish. But, if ANY of these columns have nulls, I get a null for FullName.
This is somewhat as I would expect, since an SQL query would also return
null if ISNULL were not used, but how do I handle the nulls in ADO.Net?
except for entries which have nulls. For example:
FullName.Expression = "FirstName + ' ' + MiddleInitial + ' ' + LastName"
If all of these columns return non-null values, I get the FullName as I
wish. But, if ANY of these columns have nulls, I get a null for FullName.
This is somewhat as I would expect, since an SQL query would also return
null if ISNULL were not used, but how do I handle the nulls in ADO.Net?