Ekkeir

Results 2 issues of Ekkeir

For the following classes ```csharp public class Source { public DateTime Time { get; set; } } public class Destination { public int Number { get; set; } } ```...

There's an exception produced when mapping to a class with a ctor: ```csharp public class Destination { public Destination(int number) { Id = number; } public int Id { get;...