I'm trying to use Dapper dot net in F# to perform a simple SQLite query.
Dapper returns a collection of dynamic objects: using them in C# is straightforward, but from what I understood F# has no dynamic property lookup implementation out-of-the-box....Thi...