What feature would you like to see in ABP Suite in the new version?
Continuation thread of https://abp.io/support/questions/6529/ABP-Suite-feature-request--2024
3 Answer(s)
-
0
We have been using the CRUD generator, and it would be nice if we had the option to generate with DateTimeOffsets instead of DateTimes so that we can preserve timezone info.
-
0
When creating a master - child entities, ABP suite is generating managers (DomainService) for master (AggregateRoot) and child (Entity) entities.
This means child entities can be managed directly from child services (application and domain services) without using the master entity, and I think it is not DDD fridendly.
My suggestions for ABP Suite is:-
Do not create the manager (DomainService) for the child entity
-
Create methods for managing child entities within the master managers (DomainService).
In that way the DomainServices for the AggregateRoot entity will take care about its child entities being more DDD friendly. Does it make sense to you?
-
-
0
When changing a Master entity from multi-tenant to non muti-tenant and viceversa, change the child entity accordingly. Currently only the master is being updated, and a modification in the child entity is required to update the multi-tenant property.