Skip to content

Instantly share code, notes, and snippets.

@gshutler
Created July 22, 2010 15:13
Show Gist options
  • Select an option

  • Save gshutler/486103 to your computer and use it in GitHub Desktop.

Select an option

Save gshutler/486103 to your computer and use it in GitHub Desktop.
Expression<Func<X, bool>> Blah<X, T>(Expression<Func<X, T>> prop, Expression<Func<T, bool>> pred)
{
return x => pred.Compile().Invoke(prop.Compile().Invoke(x));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment