Skip to content

Instantly share code, notes, and snippets.

@ohlawdie
Last active February 11, 2020 22:46
Show Gist options
  • Save ohlawdie/e47654a45965aac57c30f56eacee6696 to your computer and use it in GitHub Desktop.
Save ohlawdie/e47654a45965aac57c30f56eacee6696 to your computer and use it in GitHub Desktop.
Ext of LinqBuilder #linq F#
type Microsoft.FSharp.Linq.QueryBuilder with
[<CustomOperation("existsNot")>]
member _.ExistsNot (source: QuerySource<'T, 'Q>, predicate) =
Enumerable.Any (source.Source, Func<_,_>(predicate)) |> not
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment