开始用的
int count = conn.Query<int>(sqlStr, param).FirstOrDefault(); // return count > 0 ? true : false;
报错,所以我用的是
using System.Linq;using Dapper;int count = connection.Query(sqlStr.ToString(), new { Phone = phone }).Count(); // 引用Linq