Skip to content

Instantly share code, notes, and snippets.

View diegobfernandez's full-sized avatar

Diego B. Fernandez diegobfernandez

View GitHub Profile
@diegobfernandez
diegobfernandez / Dapper.fs
Last active May 9, 2017 05:45 — forked from vbfox/Dapper.fs
Minimal dapper in F#
module DapperFSharp
open System.Data
open System.Dynamic
open System.Collections.Generic
open Dapper
let dapperQuery<'Result> (query:string) (connection: IDbConnection) : 'Result seq =
connection.Query<'Result>(query)
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Create a build and development environment for Firefox.
FROM ubuntu:13.10