FsSql.Core

Functional ADO.NET for F#


Keywords
F#, sql
License
Apache-2.0
Install
Install-Package FsSql.Core -Version 3.1.0

Documentation

FsSql provides a functional interface to ADO.NET for F# applications.

Features:

  • Connection management
  • DBNull <-> option type conversion
  • Async calls
  • Transaction computation expression
  • Composable mapping functions

And, of course, everything ADO.NET does, in an idiomatic, functional, way.

For general usage, see:

Configuring logging:


open System
open System.Diagnostics

open FsSql

type MyLogger(name) =
  interface Logging.Logger with
    member x.Log line =
      Debug.WriteLine (sprintf "%A" line)
    member x.Debug fLine =
      Debug.WriteLine (sprintf "%A" (fLine ()))
    member x.Verbose fLine =
      Debug.WriteLine (sprintf "%A" (fLine ()))

Logging.configure (fun () -> DateTime.UtcNow.Ticks)
                  (fun name -> new MyLogger(name))

NuGet package: paket add FsSql.Core