Skip to content

Instantly share code, notes, and snippets.

@aph5nt
Created June 7, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aph5nt/1b24d3635df5594f097d to your computer and use it in GitHub Desktop.
Save aph5nt/1b24d3635df5594f097d to your computer and use it in GitHub Desktop.
let initGames() =
let table = new Database.dbo.Tables.Game()
table.Clear()
table.AcceptChanges()
table.AddRow("My First Game", DateTime.UtcNow.AddHours(-1.00), DateTime.UtcNow.AddHours(1.00), DateTime.UtcNow.AddHours(2.00), Some(10000L))
table.AcceptChanges()
table.Dispose() |> ignore
ignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment