Skip to content

Instantly share code, notes, and snippets.

@xxnickles
xxnickles / AzuteTableStorage.fsx
Last active October 21, 2021 03:11
Azure table example in F#. Why I need to implement members twice?
#r "nuget: Azure.Data.Tables"
open System
open Azure
open Azure.Data.Tables // Namespace for Table storage types
open System.Linq
open System.Collections.Generic
type Customer(firstName, lastName, email: string, phone: string) =
let timestamp : Nullable<DateTimeOffset> = Nullable();