1
Fork 0
solar-conflux/fsharp/todolist-api/src/Db.fs

77 lines
2 KiB
Forth
Raw Normal View History

module Db
open FSharp.Data.Sql
[<Literal>]
let ConnectionString = "Server=127.0.0.1; Database=todo_api_db; User Id=suave; Password=1234;"
type Sql = SqlDataProvider<ConnectionString=ConnectionString, DatabaseVendor=Common.DatabaseProviderTypes.POSTGRESQL, CaseSensitivityChange=Common.CaseSensitivityChange.ORIGINAL>
module Context =
type DbContext = Sql.dataContext
let getContext() = Sql.GetDataContext()
module Types =
open Context
open Chiron
type DbTodo = DbContext.``public.todosEntity``
type Todo =
{ id: int
description: string
name: string }
static member ToJson(todo: Todo) =
json {
do! Json.write "name" todo.name
do! Json.write "description" todo.description
do! Json.write "id" todo.id
}
static member FromJson(_: Todo) =
json {
let! name = Json.read "name"
let! description = Json.read "description"
let! id = Json.read "id"
return { name = name
description = description
id = id }
}
type TodoDetails =
{ description: string
name: string }
static member FromJson(_: TodoDetails) =
json {
let! name = Json.read "name"
let! description = Json.read "description"
return { name = name
description = description }
}
module Queries =
open Context
open Types
let getTodosById id (ctx: DbContext): DbTodo option =
query {
for todo in ctx.Public.Todos do
where (todo.Id = id)
select todo
}
|> Seq.tryHead
let updateTodosById (todo: DbTodo) (details: TodoDetails) (ctx: DbContext) =
todo.Name <- details.name
todo.Description <- details.description
ctx.SubmitUpdatesAsync()