Using Dapper and Postgresql - citext data type
问题 I'm not sure if there is a way to support this, but I'm having trouble getting Dapper to map string parameter values to the Postgresql citext data type as it seems to be using the text type. In particular, I'm trying to call a function that takes in citext parameters - the error I get back is: var c = ConnectionManager<T>.Open(); string sql = @"select * from ""dbo"".""MyFunction""(@schemaName, @tableName);"; var param = new { schemaName = schema, tableName = table }; string insecureSalt = c