Can someone please explain what this means (from the Dapper.net website)
Limitations and caveats
Dapper caches information about every query it runs, this allow it to materialize objects quickly and process parameters quickly. The current implementation caches this information in a ConcurrentDictionary object. The objects it stores are never flushed. If you are generating SQL strings on the fly without using parameters it is possible you will hit memory issues. We may convert the dictionaries to an LRU Cache.
I am not able to understand what the line in bold means. I am using SQL Server and c# client.
Can someone please give a sample of c# code that will create this memory issue. thank you