FSharp.TypeConverter 1.0.0

dotnet add package FSharp.TypeConverter --version 1.0.0
NuGet\Install-Package FSharp.TypeConverter -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FSharp.TypeConverter" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharp.TypeConverter --version 1.0.0
#r "nuget: FSharp.TypeConverter, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FSharp.TypeConverter as a Cake Addin
#addin nuget:?package=FSharp.TypeConverter&version=1.0.0

// Install FSharp.TypeConverter as a Cake Tool
#tool nuget:?package=FSharp.TypeConverter&version=1.0.0

CI Nuget

FSharp.TypeConverter

Getting started

NuGet package available:

$ dotnet add package FSharp.TypeConverter

💡 You can check a complete sample HERE

How to use

Option<'T>

For Option<'T> you will need to call TypeDescriptor.addDefaultOptionTypes(), this will add type-converters for almost all BLC and common types.

If you need to use any other optional type you can add it manually with TypeDescriptor.addOption<YourType>

Discriminated Unions

This library will deal with only two types of union types:

  • Single Case Unions (ex: type Email = Email of string)
  • Fieldless Unions (ex: type Light = On | Off)

To add definitions for your type just call TypeDescriptor functions at the very beginning of your program:

TypeDescriptor.addUnion<Email>
TypeDescriptor.addUnion<Light> 

💡: This also adds the Option<T> handler for the registered union type

If you have a lot of types you can scan and load all valid union types using TypeDescriptor.addUnionTypesInAssemblyContaining<TypeOnAssembly>

Example

Using for ASP.NET Core Options Pattern

appsettings.json

{
  "Person": {
    "FirstName": "Jonny",
    "LastName": "Cage",
    "Email": "fsharp@dotnet.com",
    "Age": 35,
    "Status": "Enabled",
    "WebSite": "https://fsharpforfunandprofit.com"
  },
  "PersonEmpty": {
    "FirstName": "Goro",
    "Status": "Disabled",
    "Email": "prince@shokan.com",
    "LastName": null
  }
}

Program.fs

open System.ComponentModel

// Single case types
type Email = Email of string
type Natural = Natural of int
// Fieldless union
type Status = Enabled | Disabled

// Option model
[<CLIMutable>]
type PersonSettings =
    { FirstName: string
      LastName: string option
      Email: Email
      Age: Natural option
      Status: Status
      WebSite: Uri option }

// register option for BCL and common types
TypeDescriptor.addDefaultOptionTypes ()

// register all single case union types and empty unions on the assembly
TypeDescriptor.addUnionTypesInAssemblyContaining<PersonSettings>

// alternatively you can add one by one with
// TypeDescriptor.addUnion<Email>
// TypeDescriptor.addUnion<Natural>

let builder = WebApplication.CreateBuilder Array.empty

builder.Services
    .AddOptions<PersonSettings>()
    .BindConfiguration("Person")
    .ValidateOnStart()
|> ignore

let app = builder.Build()

// Options from dependency injection
let person = app.Services.GetRequiredService<IOptions<PersonSettings>>()
printfn $"Complete %A{person.Value}"

// Getting direct from the IConfiguration
let configuration = app.Services.GetRequiredService<IConfiguration>()
let emptyPerson = configuration.GetSection("PersonEmpty").Get<PersonSettings>()
printfn $"Missing %A{emptyPerson}"

Output

{ FirstName = "Jonny"
  LastName = Some "Cage"
  Email = Email "fsharp@dotnet.com"
  Age = Some (Natural 35)
  Status = Enabled
  WebSite = Some https://fsharpforfunandprofit.com/ }
  
{ FirstName = "Goro"
  LastName = None
  Email = Email "prince@shokan.com"
  Age = None
  Status = Disabled
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 624 11/10/2023
0.1.0-beta.1 55 11/10/2023