Results 11 comments of devbased

I think in the case of the mapper, the user should be able to save the generated models in source control. And dotnet generator has a problem with that. You...

@ascariz ```csharp [TestMethod] public void MapToTarget() { var dto = new EntidadDto { CCC = "one,two,three", }; // expression tree cannot contain call which contains optional arguments, so specify explicitly...

I think it's because CollectionAdapter is not performing null check before add to collection ```csharp private Expression CreateListSet(Expression source, Expression destination, CompileArgument arg) { //### IList //for (var i =...

Они поменяли апи постинга. Теперь приходит ```json {"num":12345678,"result":1} {"error":{"code":-20,"message":"Вы ничего не запостили."},"result":0} ``` вместо ```json {"Num":12345678,"Status":"OK"} ``` т.е. надо поправить парсинг в `getSubmitData(json)` ну и не скрывать postarea, как @RichardSimple...

@ParadiseFallen Have you tried [MapContext](https://github.com/MapsterMapper/Mapster/wiki/Dependency-Injection)?

@lahma Can we use something like `services.AddSingleton(provider => provider.GetRequiredService().GetScheduler().GetAwaiter().GetResult());` if app needs single scheduler?

I think one-time blocking async work is acceptable in general

You could generate sequential GUIDs as MassTransit does.

@ignacioerrico In the documentation, it is mentioned that you need to use MapWith. Please refer to: https://github.com/MapsterMapper/Mapster/wiki/Custom-conversion-logic For more complex situations, you can always resort to building a LambdaExpression E.g....