diff --git a/Readme.md b/Readme.md index 1a6061b8c..218c1ed52 100644 --- a/Readme.md +++ b/Readme.md @@ -368,7 +368,7 @@ Ansi Strings and varchar Dapper supports varchar params, if you are executing a where clause on a varchar column using a param be sure to pass it in this way: ```csharp -Query("select * from Thing where Name = @Name", new {Name = new DbString { Value = "abcde", IsFixedLength = true, Length = 10, IsAnsi = true }); +Query("select * from Thing where Name = @Name", new {Name = new DbString { Value = "abcde", IsFixedLength = true, Length = 10, IsAnsi = true }}); ``` On SQL Server it is crucial to use the unicode when querying unicode and ANSI when querying non unicode.