You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 19, 2023. It is now read-only.
Hi. Following test app throws file load exception on .net core 2.2
using Dapper.FluentMap;
using Dapper.FluentMap.Mapping;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
FluentMapper.Initialize(c =>
{
c.AddMap(new TestMap());
});
}
}
public class Test
{
public string TestField { get; set; }
}
public class TestMap : EntityMap<Test>
{
public TestMap()
{
Map(p => p.TestField).ToColumn("Test");
}
}
}
Hi. Following test app throws file load exception on .net core 2.2
With following package references