dapper 最简单操作示例
Posted 清晨时光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dapper 最简单操作示例相关的知识,希望对你有一定的参考价值。
static string dataConnection = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString; static IDbConnection connection = new mysqlConnection(dataConnection); public static string GetCode() { using (connection) {
//查询 string code = connection.Query<string>($"SELECT orignal_code FROM `pack_code_oc` ").FirstOrDefault();
//删除 connection.Execute($"delete FROM `pack_code_oc` where orignal_code=‘{code}‘"); return code; } }
以上是关于dapper 最简单操作示例的主要内容,如果未能解决你的问题,请参考以下文章