Check if record exists with Dapper ORM September 16, 2023 by Tarik int id = ... var exists = conn.ExecuteScalar<bool>("select count(1) from Table where Id=@id", new {id}); should work…