dapper参数不定时用这种方法动态参数

关山初度尘未洗,策马扬鞭再奋蹄!这篇文章主要讲述dapper参数不定时用这种方法动态参数相关的知识,希望能为你提供帮助。

string where = null; var p = new DynamicParameters(); if (classId != null) { where = " and classId=:classId "; p.Add("classId", classId); } if (key != null) { where = " and (name like :key or description like :key) "; key = string.Format("%{0}%", key); p.Add("key", key); }

【dapper参数不定时用这种方法动态参数】 

    推荐阅读