Skip to content

Instantly share code, notes, and snippets.

View michal880's full-sized avatar
🖖

Michal michal880

🖖
View GitHub Profile
@lancscoder
lancscoder / Connection.cs
Created February 14, 2012 19:28
Dapper Getting Started
public class ConnectionFactory {
public static DbConnection GetOpenConnection() {
var connection = new SqlConnection("MyConnectionString");
connection.Open();
return connection;
}
}