I am currently using the two-classes variant of adapter in version 2.0 since I had used the third-party template which did the same thing back in version 1.x.
I used the two-classes variant since I liked the idea of keeping my custom entity code in a separate file. But now that version 2.0 generates the entities as partial classes, I'd rather store my custom code in partial classes instead of the subclasses.
I'm wondering if I can just delete all the enity subclasses from the generic data project? I'm assuming the generated entity classes are the same regardless of whether I'm using the one-class adapter or two-class adapter variant.
Thanks.