I got the above error in my app. Here is the original code
public string GetCustomerNumber(Guid id) { string accountNumber = (string)DBSqlHel
You can use C#'s null coalescing operator
return accountNumber ?? string.Empty;