A
Aaron Robson
Hi, I have recently started learning ORM, and I would like to model the
situation where a lot of my objects have some standard facts:
BusinessEntity(Id) has CreatedOn()
BusinessEntity(Id) has ModifiedOn()
....
....
So for example I would like to define an Order(Id) object which has all of
the roles of a BusinessEntity, without having to add every role manually - I
would like the resulting tables to only have an Order table with all of the
fields, as I do not wish to pay the price of joining to a BusinessEntity
table.
Is there a way to do this ?
Thanks
Aaron Robson
situation where a lot of my objects have some standard facts:
BusinessEntity(Id) has CreatedOn()
BusinessEntity(Id) has ModifiedOn()
....
....
So for example I would like to define an Order(Id) object which has all of
the roles of a BusinessEntity, without having to add every role manually - I
would like the resulting tables to only have an Order table with all of the
fields, as I do not wish to pay the price of joining to a BusinessEntity
table.
Is there a way to do this ?
Thanks
Aaron Robson