From 8a8f18de0bda44a92825ccd7db5039815cc7c8b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20He=C5=82ka?= Date: Sat, 7 Jun 2025 19:42:39 +0200 Subject: [PATCH] Replacing SqlFun with DbFun DbFun is successor of SqlFun, made by the same author, with the same design decisions in mind, but more powerful and more internally consistent. --- guides/data-access/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/data-access/index.md b/guides/data-access/index.md index 23b931c0..3bac3075 100644 --- a/guides/data-access/index.md +++ b/guides/data-access/index.md @@ -44,7 +44,7 @@ Some resources are listed below: * [SqlHydra](https://github.com/JordanMarr/SqlHydra) - SqlHydra is a suite of NuGet packages for working with databases in F#. It includes a set of dotnet tools for generating types for various database providers, and a querying library that works with SQL Server, SQLite, PostgreSql, MySql, Oracle and Firebird. -* [SqlFun](https://github.com/jacentino/SqlFun) - SqlFun is a tool for writing data access code in F# functional way. +* [DbFun](https://github.com/jacentino/DbFun) - DbFun is a tool for writing data access code in F# functional way. It's fast, type safe and gives you all powers of SQL, no custom query language constraints you. It's also lightweight, you need to know a general idea and few functions (and, of course SQL).