Windows 8 store apps do not allow other projects within one's solution to perform CRUD operations even though these projects can have the proper reference to the SQLite DLL that's required.
As a result of my finding, I am duplicating my Data Access Layer code in all my Windows Store apps. Thus, development time is increasing dramatically as a result of updating all my apps each time I need to account for recently added tables for the multi app solution that I am building.
NOTE: I heard that implementing SkyDrive integration is an alternative approach that may solve this issue. However, I made the decision early on to implement sync operations with SQLite and cannot afford to swap out data access layers at this stage of development.
Any suggestions?
Thanks, Scott Nimrod