score:3

Accepted answer

Make use of : ?? Operator

try this below code

contactTable.Select(c => ( (( c.Title ?? "") + " "  + c.FirstName).Trim()).ToList();

Related Query

More Query from same tag