I am new to RIA services. I downloaded a sample application called IssueVision which has server-side metadata classes in a class library, and client-side versions of those classes in a Silverlight class library.
The Silverlight class library does not (and cannot) reference the server side library, but it declares the classes as "partial" and the project compiles fine. However, Intellisense does not recognize the partial relationship and it throws a multitude of errors in the client-side code files saying "the type or namespace name could not be found", etc.
How do these partial classes work? How can you declare a partial class across multiple assemblies when neither references the other?
How can I fix Intellisense support for RIA services?