Dapper.FSharp
Dapper.FSharp copied to clipboard
Lightweight F# extension for StackOverflow Dapper with support for MSSQL, MySQL, PostgreSQL, and SQLite
Hi! We are evaluating Dapper.FSharp. First thing we tried is to replace our registration-bag for OptionsTypes. You may have seen something like this before :-) ``` let register() = SqlMapper.AddTypeHandler...
It looks like Dapper vNext is going to heavily incorporate C# source generators which will break compatibility with F#. It’s probably 3-6 months out, so this would be a good...
Currently, there seems to be a limit on 2 joins. Would it be possible to increase this limit, and what would need to be done to make this happen?
This can be worked around by also registering MySQL or some other DB's OptionTypes but seems like that shouldn't be necessary.
I think the subject summarize the question quite well. If I have a table with a jsonb column, can I map that somehow?
Using single-case DU to strongly type values is very common and also just fieldless enum-like DUs: ```fsharp type Email = Email of string type PersonId = PersonId of Guid type...
According to `README.md` and already closed issue https://github.com/Dzoukr/Dapper.FSharp/issues/67 adding `[]` to F# records isn't necessary. But when I run the following code without `[]` ```fsharp open Dapper open Dapper.FSharp.SQLite open...
It would be great to have out-of-the-box support on IAsyncEnumerable results for queries
Sorry, this is not an issue with Dapper.Fsharp but I'm creating a new library that has some overlap and would be appreciative of any help you could offer. I'm not...
This is a proposal to add a new API to this library. When using plain Dapper, it would be useful to be able to pass CommandText, Parameters, etc. through the...