Mapster icon indicating copy to clipboard operation
Mapster copied to clipboard

A fast, fun and stimulating object to object Mapper

Results 267 Mapster issues
Sort by recently updated
recently updated
newest added

``` Say I have a Class that has 3 Arrays of Classes on it, each has another 2 Arrays of classes on it and the final has 1 Array of...

open for PR
improvement
good first issue

I'm trying to use Mapster to map an object from `CcmApplication` to `RpcCcmApplication` and getting the following exception: ```TypeLoadException: Signature of the body and declaration in a method implementation do...

Hello, I have a .NET core project that has database views mapped to the entity framework and these have the `builder.HasNoKey();` configuration, as they are used only for queries. Besides,...

Hello, i am trying to use mapster.tools for generating mappings between already existing objects. In my playground project i have the following models: ``` public class Person { public string...

If you have documentation of on your mapping interface it would be nice if mapster.tool would use inheritdoc on the generated mapping class.

feature request
open for PR
help wanted
good first issue

Mapster.Tool initialises property twice if property in derived class hides base class property. **Example:** Declaration: ```c# public class Src { public MyDateTime DateTime { get; set; } } public class...

Hi, ``` class Base{ public int MyBaseProperty {get;set;} } class Derived : Base { } ``` Mapster.Tool generates: ``` class BaseDto { public int MyBaseProperty {get;set;} } class DerivedDto {...

Hi, the **Mapster.Tool** is great, but it would be even greater if one could configure `AdaptAttributeBuilder` such that types generated can inherit from a class without requiring the source class...

Hi, Mapster is a very nice Mapper. Support XML documentation comments will be nicer, this will make happier and easier when coding with Mapster.

open for PR
improvement
help wanted
good first issue

Hello, Thanks for helping developers with such great packages ! I'm using Mapster specifically for merging objects. In order to avoir erasing destination members with source null values **and default**,...