Does it makes sense to introduce an abstract IdableEntity
base class, that has a public Guid Id { get; set;}
property, and then derive all my entities from it, so I don't have to add key field to each one of them? Will I face any pitfalls if I do in theory?
I used to never do this since my DbContext model was rather simple and consisted of a few classes. Now I am designing a large entity number model that may benefit from it.