thiagoretondar
04/20/2019, 7:26 PMentity
called Alert
and for CRUD operations I have a DTO to create, so I’m naming AlertCreationDTO
but to update I can’t use AlertCreationDTO
because some fields can’t be updated. So how you organize/name those DTOs?Jukka Siivonen
04/20/2019, 9:10 PMtddmonkey
04/21/2019, 8:24 AMAlertView
instead of AlertDto
Ian White
04/21/2019, 3:22 PM@PartialDataObjects
which automatically generates partial views for dtos with various fields shown/hidden from data classes. the convention i adopted for it is TypeModel
, e.g. CreateAlert
, UpdateAlert
, PartialAlert
, etc. i guess it could go the other way around too to organize alphabetically better!