I'm following the Simple Insert Operation example at ...https://github.com/tmsmith/Dapper-Extensions#simple-insert-operation...public class Org
{
public int Id { get; set; }
public string Name { get; set; }
}
SqlConnection conn = new SqlConnectio...
Problem with: Dapper Extensions dbConnection.Get(personId)...I have a model called Person:...Person
{
public int PersonId { get; set; }
public string Name { get; set; }
}
...In the database I have this table:...data.Persons
Pers_Id
Pers_Na...