I’m looking for the ability to create a bunch of DACs that all have the same fields without retyping the fields each time. So, for example I might have 3 different DACs that I want to bind to 3 different database tables. But the actual fields should be identical. Is there any easy way of doing this?
My thought was to use DAC inheritance, where I’d have an abstract base class DAC A and then all my children DACs would automatically get the fields from DAC A added but still actually reference the different database tables behind the scenes. To be clear there wouldn’t actually be a database table for DAC A.
If this isn’t possible not a big deal, it just means more copying and pasting for me.