Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C#

An ADO.NET multi-database, multi-tier solution

Rate me:
Please Sign up or sign in to vote.
3.78/5 (26 votes)
9 Mar 2004CPOL8 min read 110.3K   4.3K   96  
A view of how ADO.NET can be used in a multi-database, multi-tier environment.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiTier.Example", "MultiTier.Example\MultiTier.Example.csproj", "{0B2CCF29-0B2D-4BEB-AA65-E40449748262}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiTier.Example.Business", "MultiTier.Example.Business\MultiTier.Example.Business.csproj", "{88C4E12A-B239-4473-A7F7-9C839508D87B}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiTier.Example.Data", "MultiTier.Example.Data\MultiTier.Example.Data.csproj", "{FE55C09E-FEE7-4AEF-9CBE-62AE95304DAB}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiTier.Common", "MultiTier.Common\MultiTier.Common.csproj", "{90F0284A-18DD-4224-86F2-0DE5796E9233}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{0B2CCF29-0B2D-4BEB-AA65-E40449748262}.Debug.ActiveCfg = Debug|.NET
		{0B2CCF29-0B2D-4BEB-AA65-E40449748262}.Debug.Build.0 = Debug|.NET
		{0B2CCF29-0B2D-4BEB-AA65-E40449748262}.Release.ActiveCfg = Release|.NET
		{0B2CCF29-0B2D-4BEB-AA65-E40449748262}.Release.Build.0 = Release|.NET
		{88C4E12A-B239-4473-A7F7-9C839508D87B}.Debug.ActiveCfg = Debug|.NET
		{88C4E12A-B239-4473-A7F7-9C839508D87B}.Debug.Build.0 = Debug|.NET
		{88C4E12A-B239-4473-A7F7-9C839508D87B}.Release.ActiveCfg = Release|.NET
		{88C4E12A-B239-4473-A7F7-9C839508D87B}.Release.Build.0 = Release|.NET
		{FE55C09E-FEE7-4AEF-9CBE-62AE95304DAB}.Debug.ActiveCfg = Debug|.NET
		{FE55C09E-FEE7-4AEF-9CBE-62AE95304DAB}.Debug.Build.0 = Debug|.NET
		{FE55C09E-FEE7-4AEF-9CBE-62AE95304DAB}.Release.ActiveCfg = Release|.NET
		{FE55C09E-FEE7-4AEF-9CBE-62AE95304DAB}.Release.Build.0 = Release|.NET
		{90F0284A-18DD-4224-86F2-0DE5796E9233}.Debug.ActiveCfg = Debug|.NET
		{90F0284A-18DD-4224-86F2-0DE5796E9233}.Debug.Build.0 = Debug|.NET
		{90F0284A-18DD-4224-86F2-0DE5796E9233}.Release.ActiveCfg = Release|.NET
		{90F0284A-18DD-4224-86F2-0DE5796E9233}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	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
Web Developer
Belgium Belgium
I started using C# in the spring of 2003.
For the moment I'm working for a company that makes healthcare related software and do the ASP.NET programming in C# and VB.NET.

Comments and Discussions