Hello
I want to add some additional code to my entities so I'm looking at using the included templates mechanism. in particular Custom_EntityAdapterTemplate
The code I'm adding requires an extra namespace to be added as a using at the top of the class. how do I specify this?
Also I could do with having each entity implement a generic interface eg ISuperEntity<T> where T is the Entity type eg:
internal partial class UserEntity : CommonEntityBase, ISuperEntity<UserEntity>
thanks
~Brett