This class contains function and properties that affect the behavior of Mapless.
public static class MapManager
{
public static void CacheAssembly(Assembly assembly);
public static bool ConvertColumnTypeToPropertyTypeIfPossible { get; set; }
}public static void CacheAssembly(Assembly assembly);Description: Search assembly for interfaces with ConcreteAttribute and save them in cache.
public static bool ConvertColumnTypeToPropertyTypeIfPossible { get; set; }Description: Indicate that type conversion may happened when mapping column value from database to property.
If you want to use internal interfaces with Mapless then you need to give it permission to use them; by adding the following line to your Assembly.cs
[assembly: InternalsVisibleTo("DynamicContainers")]