MapperGenerator icon indicating copy to clipboard operation
MapperGenerator copied to clipboard

A sample mapper using source generator for .NET

Results 2 MapperGenerator issues
Sort by recently updated
recently updated
newest added

```csharp public class PersonEntity { public int Id { get; set; } public string Name { get; set; } public string Age { get; set; } } [Mapping(typeof(PersonEntity),IgnoreNotMatch = true)]...