AutoDto
AutoDto copied to clipboard
Auto copy properties from bl model to dto
**Description** I have been trying use the library, but even AutoDto.Example fails to apply changes when build executed 2nd+ time. Feels like this specific source generator is not executed but...
If I want to link dto class with bl, I will use an attribute named [DtoFrom]. ``` [DtoFrom(typeof(SomeBlType))] public partial SomeDto {} ``` Add new attribute with same behaviour with...
Add an attribute to generate DTO model with required props. Like ``` public partial class MyBlModelDTO { public required int Id {get; init;} public required string Code {get; init;} public...
Add an attribute `[ManualDTO]` to mark manual DTO model to use it with ReplaceToDtoProperty strategy