namespace BitBadger.Documents.Postgres.Compat open BitBadger.Documents open BitBadger.Documents.Postgres [] module Parameters = /// Create a JSON field parameter [] [] let addFieldParam name field parameters = addFieldParams [ { field with ParameterName = Some name } ] parameters /// Append JSON field name parameters for the given field names to the given parameters [] [] let fieldNameParam fieldNames = fieldNameParams fieldNames [] module Query = /// Create a WHERE clause fragment to implement a comparison on a field in a JSON document [] [] let whereByField field paramName = Query.whereByFields Any [ { field with ParameterName = Some paramName } ] module WithProps = [] module Count = /// Count matching documents using a JSON field comparison (->> =) [] [] let byField tableName field sqlProps = WithProps.Count.byFields tableName Any [ field ] sqlProps [] module Exists = /// Determine if a document exists using a JSON field comparison (->> =) [] [] let byField tableName field sqlProps = WithProps.Exists.byFields tableName Any [ field ] sqlProps [] module Find = /// Retrieve documents matching a JSON field comparison (->> =) [] [] let byField<'TDoc> tableName field sqlProps = WithProps.Find.byFields<'TDoc> tableName Any [ field ] sqlProps /// Retrieve documents matching a JSON field comparison (->> =) [] let ByField<'TDoc>(tableName, field, sqlProps) = WithProps.Find.ByFields<'TDoc>(tableName, Any, Seq.singleton field, sqlProps) /// Retrieve the first document matching a JSON field comparison (->> =); returns None if not found [] [] let firstByField<'TDoc> tableName field sqlProps = WithProps.Find.firstByFields<'TDoc> tableName Any [ field ] sqlProps /// Retrieve the first document matching a JSON field comparison (->> =); returns null if not found [] let FirstByField<'TDoc when 'TDoc: null and 'TDoc: not struct>(tableName, field, sqlProps) = WithProps.Find.FirstByFields<'TDoc>(tableName, Any, Seq.singleton field, sqlProps) [] module Patch = /// Patch documents using a JSON field comparison query in the WHERE clause (->> =) [] [] let byField tableName field (patch: 'TPatch) sqlProps = WithProps.Patch.byFields tableName Any [ field ] patch sqlProps [] module RemoveFields = /// Remove fields from documents via a comparison on a JSON field in the document [] [] let byField tableName field fieldNames sqlProps = WithProps.RemoveFields.byFields tableName Any [ field ] fieldNames sqlProps [] module Delete = /// Delete documents by matching a JSON field comparison query (->> =) [] [] let byField tableName field sqlProps = WithProps.Delete.byFields tableName Any [ field ] sqlProps [] module Count = /// Count matching documents using a JSON field comparison (->> =) [] [] let byField tableName field = Count.byFields tableName Any [ field ] [] module Exists = /// Determine if a document exists using a JSON field comparison (->> =) [] [] let byField tableName field = Exists.byFields tableName Any [ field ] [] module Find = /// Retrieve documents matching a JSON field comparison (->> =) [] [] let byField<'TDoc> tableName field = Find.byFields<'TDoc> tableName Any [ field ] /// Retrieve documents matching a JSON field comparison (->> =) [] let ByField<'TDoc>(tableName, field) = Find.ByFields<'TDoc>(tableName, Any, Seq.singleton field) /// Retrieve the first document matching a JSON field comparison (->> =); returns None if not found [] [] let firstByField<'TDoc> tableName field = Find.firstByFields<'TDoc> tableName Any [ field ] /// Retrieve the first document matching a JSON field comparison (->> =); returns null if not found [] let FirstByField<'TDoc when 'TDoc: null and 'TDoc: not struct>(tableName, field) = Find.FirstByFields<'TDoc>(tableName, Any, Seq.singleton field) [] module Patch = /// Patch documents using a JSON field comparison query in the WHERE clause (->> =) [] [] let byField tableName field (patch: 'TPatch) = Patch.byFields tableName Any [ field ] patch [] module RemoveFields = /// Remove fields from documents via a comparison on a JSON field in the document [] [] let byField tableName field fieldNames = RemoveFields.byFields tableName Any [ field ] fieldNames [] module Delete = /// Delete documents by matching a JSON field comparison query (->> =) [] [] let byField tableName field = Delete.byFields tableName Any [ field ] open Npgsql /// F# Extensions for the NpgsqlConnection type [] module Extensions = type NpgsqlConnection with /// Count matching documents using a JSON field comparison query (->> =) [] member conn.countByField tableName field = conn.countByFields tableName Any [ field ] /// Determine if documents exist using a JSON field comparison query (->> =) [] member conn.existsByField tableName field = conn.existsByFields tableName Any [ field ] /// Retrieve documents matching a JSON field comparison query (->> =) [] member conn.findByField<'TDoc> tableName field = conn.findByFields<'TDoc> tableName Any [ field ] /// Retrieve the first document matching a JSON field comparison query (->> =); returns None if not found [] member conn.findFirstByField<'TDoc> tableName field = conn.findFirstByFields<'TDoc> tableName Any [ field ] /// Patch documents using a JSON field comparison query in the WHERE clause (->> =) [] member conn.patchByField tableName field (patch: 'TPatch) = conn.patchByFields tableName Any [ field ] patch /// Remove fields from documents via a comparison on a JSON field in the document [] member conn.removeFieldsByField tableName field fieldNames = conn.removeFieldsByFields tableName Any [ field ] fieldNames /// Delete documents by matching a JSON field comparison query (->> =) [] member conn.deleteByField tableName field = conn.deleteByFields tableName Any [ field ] open System.Runtime.CompilerServices open Npgsql.FSharp type NpgsqlConnectionCSharpCompatExtensions = /// Count matching documents using a JSON field comparison query (->> =) [] [] static member inline CountByField(conn, tableName, field) = WithProps.Count.byFields tableName Any [ field ] (Sql.existingConnection conn) /// Determine if documents exist using a JSON field comparison query (->> =) [] [] static member inline ExistsByField(conn, tableName, field) = WithProps.Exists.byFields tableName Any [ field ] (Sql.existingConnection conn) /// Retrieve documents matching a JSON field comparison query (->> =) [] [] static member inline FindByField<'TDoc>(conn, tableName, field) = WithProps.Find.ByFields<'TDoc>(tableName, Any, [ field ], Sql.existingConnection conn) /// Retrieve the first document matching a JSON field comparison query (->> =); returns null if not found [] [] static member inline FindFirstByField<'TDoc when 'TDoc: null and 'TDoc: not struct>(conn, tableName, field) = WithProps.Find.FirstByFields<'TDoc>(tableName, Any, [ field ], Sql.existingConnection conn) /// Patch documents using a JSON field comparison query in the WHERE clause (->> =) [] [] static member inline PatchByField(conn, tableName, field, patch: 'TPatch) = WithProps.Patch.byFields tableName Any [ field ] patch (Sql.existingConnection conn) /// Remove fields from documents via a comparison on a JSON field in the document [] [] static member inline RemoveFieldsByField(conn, tableName, field, fieldNames) = WithProps.RemoveFields.byFields tableName Any [ field ] fieldNames (Sql.existingConnection conn) /// Delete documents by matching a JSON field comparison query (->> =) [] [] static member inline DeleteByField(conn, tableName, field) = WithProps.Delete.byFields tableName Any [ field ] (Sql.existingConnection conn)