You are using Adapter TemplateSet. In this scenario (Adapter) you have two generated projects: DatabaseGeneric and DatabaseSpecific.
DatabaseGeneric contains all the entity classes, collections, relations, etc., so it contains all you Model. DatabaseSpecific, on the other hand contains all the logic to fetch entities, that includes the DataAccessAdapter class. Both projects are independent of each other, so you don't have assemblie reference from DatabaseGeneric to DatabaseSpecific and viceversa.
That said, you can't fetch entities from inside other entity. You can do it outside, using the DataAccessAdapter class. If you would use SelfServicing, then you can, because on SelfServicing both the entities and the persistence logic is at the same project.
To understand this better, see Templates and Templates groups.
So, maybe what you need is to create a third project (Manager, GUI, etc.) where you use both your DBGeneric and DBSpecific project to fetch what you need.