Thursday, July 23, 2009 9:14 AM
mohanbrij
Sharing source code between .NET and Silverlight
A common problem when developing Silverlight applications is how to share classes and in particular (Entity Framework) entities which are compiled for the full .NET framework in a Silverlight application. Silverlight is a browser plugin and a platform independent subset of the full .NET framework. Therefore Visual Studio does not allow referencing .NET assemblies from your Silverlight application.
Fortunately there is a very simple technique to share and reuse source code. Full details of which you can find in the link below
http://www.scip.be/index.php?Page=ArticlesNET28&Lang=EN
In this article Stefan Cruysberghs demonstrated this technique with several real world examples and I will give you some handy tips.
This linked has helped me, as I have SOA, where WCF Services, DataContracts, ServiceContracts are shared between my ASP.NET , WPF and Silverlight application.
Filed under: ASP.NET, C#, Framework 3.5, Visual Studio 2008, Silverlight 3.0, WCF