Skip to content

Instantly share code, notes, and snippets.

@tswann
Created September 21, 2011 12:44
Show Gist options
  • Save tswann/1231934 to your computer and use it in GitHub Desktop.
Save tswann/1231934 to your computer and use it in GitHub Desktop.
// FAIL
_context.ContactSet.Where(x => !string.IsNullOrEmpty(x.LastName));
// WIN
_context.ContactSet.Where(x => x.LastName != null && x.LastName != string.Empty);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment