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.

This is working but I suppose there are better ways to do this without resorting to reflection:

let (?) x prop =
    let flags = BindingFlags.GetProperty ||| BindingFlags.InvokeMethod
    x.GetType().InvokeMember(prop, flags, null, x, [||])

let doQuery () =
    //...
    let conn = new SQLiteConnection (connString)
    conn.Open ()

    conn.Query("select first_name from customers")
        |> Seq.map (fun c -> c ? first_name)
        |> List.ofSeq

What is the best way to implement the ? operator in this case?

link|improve this question

3  
It seems that this thread answers your question: stackoverflow.com/questions/6150087/f-dynamic-object-access – pad Feb 20 at 16:42
@pad Good answer. You should have added your response as an answer so I could upvote it :-) – Onorio Catenacci Feb 20 at 16:47
4  
Nit: use c?first_name (no spaces) to be idiomatic. ? is like . here. – Brian Feb 20 at 17:09
3  
Not a solution, but have you considered using FsSql (github.com/mausch/FsSql) instead? It's written specifically for F#. – Mauricio Scheffer Feb 20 at 17:26
1  
Or SOMA soma.codeplex.com – Mauricio Scheffer Feb 20 at 17:45
show 4 more comments
feedback

1 Answer

up vote 5 down vote accepted

This thread consists of several solutions for your problem. Especially, ImpromptuInterface.FSharp is available on NuGet and ready to use.

link|improve this answer
I was hoping there was an easier way (or without an external library). I suppose great power/great responsibility etc... :-) – Francesco De Vittori Feb 23 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.