Should I have different DTOs for Create and Update? (CRUD) [closed]
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . I'm designing a Web API with the usual CRUD operations on a Person entity. The problem is that I don't know how to design the DTOs. The entity is as follows: public class Person { public int Id { get; set; } public string Name { get; set; } public int Age { get; set; } } I