Dapper MultiMap doesn't work with splitOn with NULL value
问题 I have a problem with MultiMaps in dapper trying to split on column that contains NULL . Dapper seems not to instantiate object and my mapping function receives null instead of object. Here's my new test: class Product { public int Id { get; set; } public string Name { get; set; } public Category Category { get; set; } } class Category { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } } public void TestMultiMapWithSplitWithNullValue() { var