SQL type is not specified
Noncompliant Code Example:
Query<Thing>("select * from Thing where Name = @Name", new { Name = abcde });
Compliant Solution:
Query<Thing>("select * from Thing where Name = @Name", new {Name = new DbString { Value = "abcde", IsFixedLength = true, Length = 10, IsAnsi = true }});
https://github.com/StackExchange/Dapper/blob/master/Readme.md#ansi-strings-and-varchar