Click here to Skip to main content
15,891,787 members
Articles / Programming Languages / C#

Silverlight Application with MVVM WCF and EF

Rate me:
Please Sign up or sign in to vote.
3.82/5 (16 votes)
17 Jun 2012CPOL4 min read 78.2K   3.6K   21  
How to create a simple Silverlight application using the MVVM pattern with WCF and Entity Framework.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightMVVMwithWCFandLinq", "SilverlightMVVMwithWCFandLinq\SilverlightMVVMwithWCFandLinq.csproj", "{8F86688E-E1FF-467E-B871-FB964DEBE8A0}"
	ProjectSection(ProjectDependencies) = postProject
		{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92} = {2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightMVVMwithWCFandLinq.Web", "SilverlightMVVMwithWCFandLinq.Web\SilverlightMVVMwithWCFandLinq.Web.csproj", "{A862E9ED-9CBD-4D0E-B3F5-B02DB900968D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{B065161B-2E6C-4B2F-9A51-A6DCD907301A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WCFService", "WCFService\WCFService.csproj", "{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{8F86688E-E1FF-467E-B871-FB964DEBE8A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8F86688E-E1FF-467E-B871-FB964DEBE8A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8F86688E-E1FF-467E-B871-FB964DEBE8A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8F86688E-E1FF-467E-B871-FB964DEBE8A0}.Release|Any CPU.Build.0 = Release|Any CPU
		{A862E9ED-9CBD-4D0E-B3F5-B02DB900968D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A862E9ED-9CBD-4D0E-B3F5-B02DB900968D}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A862E9ED-9CBD-4D0E-B3F5-B02DB900968D}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A862E9ED-9CBD-4D0E-B3F5-B02DB900968D}.Release|Any CPU.Build.0 = Release|Any CPU
		{B065161B-2E6C-4B2F-9A51-A6DCD907301A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B065161B-2E6C-4B2F-9A51-A6DCD907301A}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B065161B-2E6C-4B2F-9A51-A6DCD907301A}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B065161B-2E6C-4B2F-9A51-A6DCD907301A}.Release|Any CPU.Build.0 = Release|Any CPU
		{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{2052020B-7B27-4E6E-84C9-1AB8D6F1BE92}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead EF (Education First)
India India
I graduated as Production Engineer and started my career as Software Developer then worked as tester for a while before moving into Windows application development using Microsoft Technologies. But for the last few years i am working on javascript, React, Node, AWS, Azure Chatbots

Comments and Discussions