I'm sure I'm being really stupid here - but I'm getting into Dapper and contrib. Sample code includes lines like this:
using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString))
{
connection.Get<User>(3).IsNull();
var id = connection.Insert(new User { Name = "Adam", Age = 10 });
IsNull() is never recognised. Nor is IsEqualTo in the same context.
I have googled - nothing close, searched in object browsers - am using Dapper - and using Dapper.Contrib.Extensions; But it sill can't find it.
thx