Here is code snippet:
extern alias customerRead;
extern alias customerEdit;
extern alias customerSearch;
using readC = customerRead::X.Y.DataAccess;
using editC = customerEdit::X.Y.DataAccess;
using searchC = customerSearch::X.Y.DataAccess;
...
readC.Customer c = new readC.Customer();
c. // NO CODE COMPLETITION
I have aliases for all three projects in .project file and compiling from the IDE goes well.