AutoDto icon indicating copy to clipboard operation
AutoDto copied to clipboard

Auto copy properties from bl model to dto

Results 5 AutoDto issues
Sort by recently updated
recently updated
newest added

**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...

enhancement

Add support for records as DTO model

enhancement

Add an attribute `[ManualDTO]` to mark manual DTO model to use it with ReplaceToDtoProperty strategy

enhancement