MySQL用の.NETドライバをインストールする必要があります。次に、SQLproviderをインストールします。ドキュメントにMySQLのサンプルがあります。 dbに接続し、次のようにクエリします:
type sql = SqlDataProvider<
dbVendor,
connString,
ResolutionPath = resPath,
IndividualsAmount = indivAmount,
UseOptionTypes = useOptTypes,
Owner = "HR"
>
let ctx = sql.GetDataContext()
let employees =
ctx.Hr.Employees
|> Seq.map (fun e -> e.ColumnValues |> Seq.toList)
|> Seq.toList
connstring
次のようになります:
[<Literal>]
let connString = "Server=localhost;Database=HR;User=root;Password=password"