寫過 Dapper 之後,已不太能忍受傳統 ADO.NET 的囉嗦寫法:
using (var cn = GetConnection())
{
cn.Open();
var cmd = cn.CreateCommand();
cmd.CommandText = "... Read More
↧