stagep
stagep
Do you have `` in your Routes.razor?
You need to use the pre-release versions of Mapster for .Net 8. If you are using Visual Studio then select "Include prerelease" when managing your Nuget packages. This will install...
The boolean conditional will be evaluated at runtime so the mapping when the int has a value needs to be defined to create a string from a nullable int. ```...
This repository is not related to the Mapster WordPress Maps plugin. Use the Contact link at [https://wpmaps.mapster.me](https://wpmaps.mapster.me) for support.
Same issue as #674
What should happen in this scenario if name-dependency was reduced? ``` public class Destination { public Destination(int number1, int number2) { Id1 = number2; Id2 = number1; } public int...
``` public class MapsterConfiguration : IRegister { public void Register(TypeAdapterConfig config) { config.ForType().MapWith(d => d.ToDateTime()); config.ForType().MapWith(d => Timestamp.FromDateTime(d)); } } ```
If DateTime is nullable then you have 2 options. Use a nullable Timestamp or create your own gRPC message that can handle the nullability of DateTime with a IsNull property....
In order to identify issues that are still active, we are closing issues that we believe are either resolved or are dormant. If your issue is still active then please...
@DocSvartz @andrerav Does the exception occur because the mapping attempts to map the properties of PeopleDto which is null? My expectation is that mapping of a reference type that is...