实例介绍
在使用WCF分布式的情况下,底层使用的EF架构。解决 不同数据库服务器间的事务问题
【实例截图】
【核心代码】
WCF分布式事务Demo
├── DBBasic.sql
├── DBExam.sql
└── WCFClient
├── BasicContracts
│ ├── App.config
│ ├── Basic.Context.cs
│ ├── Basic.Context.tt
│ ├── BasicContracts.csproj
│ ├── BasicContracts.csproj.user
│ ├── Basic.cs
│ ├── Basic.Designer.cs
│ ├── Basic.edmx
│ ├── Basic.edmx.diagram
│ ├── Basic.tt
│ ├── bin
│ │ └── Debug
│ │ ├── BasicContracts.dll
│ │ ├── BasicContracts.dll.config
│ │ ├── BasicContracts.pdb
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.SqlServer.resources.dll
│ ├── Common
│ │ ├── BasicServiceFactory.cs
│ │ └── ServiceProxy
│ │ ├── ChannelFactoryCreator.cs
│ │ ├── ServiceProxyFactory.cs
│ │ └── ServiceRealProxy.cs
│ ├── IBasic.cs
│ ├── IBasicService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── BasicContracts.csproj.FileListAbsolute.txt
│ │ ├── BasicContracts.csprojResolveAssemblyReference.cache
│ │ ├── BasicContracts.dll
│ │ ├── BasicContracts.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── edmxResourcesToEmbed
│ │ │ ├── Basic.csdl
│ │ │ ├── Basic.msl
│ │ │ └── Basic.ssdl
│ │ └── TempPE
│ │ ├── Basic.cs.dll
│ │ ├── Basic.Designer.cs.dll
│ │ └── BasicWrong.Designer.cs.dll
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── T_Student.cs
├── BasicService
│ ├── Basic.cs
│ ├── BasicService.cs
│ ├── BasicService.csproj
│ ├── BasicService.csproj.user
│ ├── BasicService.svc
│ ├── BasicService.svc.cs
│ ├── bin
│ │ ├── BasicContracts.dll
│ │ ├── BasicContracts.pdb
│ │ ├── BasicService.dll
│ │ ├── BasicService.pdb
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.SqlServer.resources.dll
│ ├── obj
│ │ └── Debug
│ │ ├── BasicService.csproj.FileListAbsolute.txt
│ │ ├── BasicService.csprojResolveAssemblyReference.cache
│ │ ├── BasicService.dll
│ │ ├── BasicService.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── BasicService备份——有错误
│ ├── BasicService.cs
│ ├── BasicService.csproj
│ ├── BasicService.csproj.user
│ ├── BasicService.svc
│ ├── bin
│ │ ├── BasicService.dll
│ │ ├── BasicService.pdb
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.SqlServer.resources.dll
│ ├── obj
│ │ └── Debug
│ │ ├── BasicService.csproj.FileListAbsolute.txt
│ │ ├── BasicService.dll
│ │ ├── BasicService.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── ExamContracts
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── ExamContracts.dll
│ │ ├── ExamContracts.dll.config
│ │ ├── ExamContracts.pdb
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.SqlServer.resources.dll
│ ├── Common
│ │ ├── ExamServiceFactory.cs
│ │ └── ServiceProxy
│ │ ├── ChannelFactoryCreator.cs
│ │ ├── ServiceProxyFactory.cs
│ │ └── ServiceRealProxy.cs
│ ├── Exam.Context.cs
│ ├── Exam.Context.tt
│ ├── ExamContracts.csproj
│ ├── ExamContracts.csproj.user
│ ├── Exam.cs
│ ├── Exam.Designer.cs
│ ├── Exam.edmx
│ ├── Exam.edmx.diagram
│ ├── Exam.tt
│ ├── IExam.cs
│ ├── IExamService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── edmxResourcesToEmbed
│ │ │ ├── Exam.csdl
│ │ │ ├── Exam.msl
│ │ │ └── Exam.ssdl
│ │ ├── ExamContracts.csproj.FileListAbsolute.txt
│ │ ├── ExamContracts.csprojResolveAssemblyReference.cache
│ │ ├── ExamContracts.dll
│ │ ├── ExamContracts.pdb
│ │ └── TempPE
│ │ ├── Exam.cs.dll
│ │ └── Exam.Designer.cs.dll
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── T_Exam.cs
├── ExamService
│ ├── bin
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── ExamContracts.dll
│ │ ├── ExamContracts.pdb
│ │ ├── ExamService.dll
│ │ ├── ExamService.pdb
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.SqlServer.resources.dll
│ ├── Exam.cs
│ ├── ExamService.cs
│ ├── ExamService.csproj
│ ├── ExamService.csproj.user
│ ├── ExamService.svc
│ ├── ExamService.svc.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ExamService.csproj.FileListAbsolute.txt
│ │ ├── ExamService.csprojResolveAssemblyReference.cache
│ │ ├── ExamService.dll
│ │ └── ExamService.pdb
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── ExamService备份——错误未解决
│ ├── bin
│ │ ├── EntityFramework.dll
│ │ ├── ExamContracts.dll
│ │ ├── ExamService.dll
│ │ └── ExamService.pdb
│ ├── Exam.cs
│ ├── ExamService.cs
│ ├── ExamService.svc
│ ├── ExamService备份.csproj
│ ├── ExamService备份.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ExamService.csproj.FileListAbsolute.txt
│ │ ├── ExamService.csprojResolveAssemblyReference.cache
│ │ ├── ExamService.dll
│ │ └── ExamService.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── MvcClient
│ ├── bin
│ │ ├── BasicContracts.dll
│ │ ├── BasicContracts.pdb
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.xml
│ │ ├── ExamContracts.dll
│ │ ├── ExamContracts.pdb
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── MvcClient.dll
│ │ ├── MvcClient.pdb
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Mvc.xml
│ │ ├── System.Web.Providers.dll
│ │ ├── System.Web.Razor.dll
│ │ ├── System.Web.Razor.xml
│ │ ├── System.Web.WebPages.Deployment.dll
│ │ ├── System.Web.WebPages.Deployment.xml
│ │ ├── System.Web.WebPages.dll
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── System.Web.WebPages.Razor.xml
│ │ ├── System.Web.WebPages.xml
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ ├── EntityFramework.SqlServer.resources.dll
│ │ └── System.Web.Providers.resources.dll
│ ├── Content
│ │ ├── Site.css
│ │ └── themes
│ │ └── base
│ │ ├── images
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ ├── jquery.ui.accordion.css
│ │ ├── jquery.ui.all.css
│ │ ├── jquery.ui.autocomplete.css
│ │ ├── jquery.ui.base.css
│ │ ├── jquery.ui.button.css
│ │ ├── jquery.ui.core.css
│ │ ├── jquery-ui.css
│ │ ├── jquery.ui.datepicker.css
│ │ ├── jquery.ui.dialog.css
│ │ ├── jquery.ui.progressbar.css
│ │ ├── jquery.ui.resizable.css
│ │ ├── jquery.ui.selectable.css
│ │ ├── jquery.ui.slider.css
│ │ ├── jquery.ui.tabs.css
│ │ ├── jquery.ui.theme.css
│ │ └── minified
│ │ ├── images
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ ├── jquery.ui.accordion.min.css
│ │ ├── jquery.ui.autocomplete.min.css
│ │ ├── jquery.ui.button.min.css
│ │ ├── jquery.ui.core.min.css
│ │ ├── jquery.ui.datepicker.min.css
│ │ ├── jquery.ui.dialog.min.css
│ │ ├── jquery-ui.min.css
│ │ ├── jquery.ui.progressbar.min.css
│ │ ├── jquery.ui.resizable.min.css
│ │ ├── jquery.ui.selectable.min.css
│ │ ├── jquery.ui.slider.min.css
│ │ ├── jquery.ui.tabs.min.css
│ │ └── jquery.ui.theme.min.css
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── MvcClient.csproj
│ ├── MvcClient.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MvcClient.csproj.FileListAbsolute.txt
│ │ ├── MvcClient.csprojResolveAssemblyReference.cache
│ │ ├── MvcClient.dll
│ │ └── MvcClient.pdb
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Scripts
│ │ ├── jquery-1.7.1.intellisense.js
│ │ ├── jquery-1.7.1.js
│ │ ├── jquery-1.7.1.min.js
│ │ ├── jquery-ui-1.8.20.js
│ │ ├── jquery-ui-1.8.20.min.js
│ │ ├── jquery.unobtrusive-ajax.js
│ │ ├── jquery.unobtrusive-ajax.min.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── MicrosoftAjax.debug.js
│ │ ├── MicrosoftAjax.js
│ │ ├── MicrosoftMvcAjax.debug.js
│ │ ├── MicrosoftMvcAjax.js
│ │ ├── MicrosoftMvcValidation.debug.js
│ │ ├── MicrosoftMvcValidation.js
│ │ └── modernizr-2.5.3.js
│ ├── Views
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ └── _Layout.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Web.config
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── packages
│ ├── EntityFramework.5.0.0
│ │ ├── Content
│ │ │ ├── App.config.transform
│ │ │ └── Web.config.transform
│ │ ├── EntityFramework.5.0.0.nupkg
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── EntityFramework.dll
│ │ │ │ ├── EntityFramework.xml
│ │ │ │ └── zh-Hans
│ │ │ │ ├── EntityFramework.resources.dll
│ │ │ │ └── EntityFramework.xml
│ │ │ └── net45
│ │ │ ├── EntityFramework.dll
│ │ │ ├── EntityFramework.xml
│ │ │ └── zh-Hans
│ │ │ ├── EntityFramework.resources.dll
│ │ │ └── EntityFramework.xml
│ │ └── tools
│ │ ├── about_EntityFramework.help.txt
│ │ ├── EntityFramework.PowerShell.dll
│ │ ├── EntityFramework.PowerShell.Utility.dll
│ │ ├── EntityFramework.PS3.psd1
│ │ ├── EntityFramework.psd1
│ │ ├── EntityFramework.psm1
│ │ ├── init.ps1
│ │ ├── install.ps1
│ │ ├── migrate.exe
│ │ ├── Redirect.config
│ │ └── Redirect.VS11.config
│ ├── EntityFramework.6.1.3
│ │ ├── content
│ │ │ ├── App.config.transform
│ │ │ └── Web.config.transform
│ │ ├── EntityFramework.6.1.3.nupkg
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── EntityFramework.dll
│ │ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ │ ├── EntityFramework.xml
│ │ │ │ └── zh-Hans
│ │ │ │ ├── EntityFramework.resources.dll
│ │ │ │ ├── EntityFramework.SqlServer.resources.dll
│ │ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ │ └── EntityFramework.xml
│ │ │ └── net45
│ │ │ ├── EntityFramework.dll
│ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ ├── EntityFramework.xml
│ │ │ └── zh-Hans
│ │ │ ├── EntityFramework.resources.dll
│ │ │ ├── EntityFramework.SqlServer.resources.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ └── EntityFramework.xml
│ │ └── tools
│ │ ├── about_EntityFramework.help.txt
│ │ ├── EntityFramework.PowerShell.dll
│ │ ├── EntityFramework.PowerShell.Utility.dll
│ │ ├── EntityFramework.psd1
│ │ ├── EntityFramework.psm1
│ │ ├── init.ps1
│ │ ├── install.ps1
│ │ └── migrate.exe
│ ├── EntityFramework.zh-Hans.5.0.0
│ │ ├── EntityFramework.zh-Hans.5.0.0.nupkg
│ │ └── lib
│ │ ├── net40
│ │ │ └── zh-Hans
│ │ │ ├── EntityFramework.resources.dll
│ │ │ └── EntityFramework.xml
│ │ └── net45
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.xml
│ ├── EntityFramework.zh-Hans.6.1.3
│ │ ├── EntityFramework.zh-Hans.6.1.3.nupkg
│ │ └── lib
│ │ ├── net40
│ │ │ └── zh-Hans
│ │ │ ├── EntityFramework.resources.dll
│ │ │ ├── EntityFramework.SqlServer.resources.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ └── EntityFramework.xml
│ │ └── net45
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ ├── EntityFramework.SqlServer.resources.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ └── EntityFramework.xml
│ ├── jQuery.1.7.1.1
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ ├── jquery-1.7.1.js
│ │ │ ├── jquery-1.7.1.min.js
│ │ │ └── jquery-1.7.1-vsdoc.js
│ │ ├── jQuery.1.7.1.1.nupkg
│ │ └── Tools
│ │ ├── common.ps1
│ │ ├── install.ps1
│ │ ├── jquery-1.7.1.intellisense.js
│ │ └── uninstall.ps1
│ ├── jQuery.UI.Combined.1.8.20.1
│ │ ├── Content
│ │ │ ├── Content
│ │ │ │ └── themes
│ │ │ │ └── base
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery.ui.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery-ui.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ ├── jquery.ui.theme.css
│ │ │ │ └── minified
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery.ui.accordion.min.css
│ │ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ │ ├── jquery.ui.button.min.css
│ │ │ │ ├── jquery.ui.core.min.css
│ │ │ │ ├── jquery.ui.datepicker.min.css
│ │ │ │ ├── jquery.ui.dialog.min.css
│ │ │ │ ├── jquery-ui.min.css
│ │ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ │ ├── jquery.ui.resizable.min.css
│ │ │ │ ├── jquery.ui.selectable.min.css
│ │ │ │ ├── jquery.ui.slider.min.css
│ │ │ │ ├── jquery.ui.tabs.min.css
│ │ │ │ └── jquery.ui.theme.min.css
│ │ │ └── Scripts
│ │ │ ├── jquery-ui-1.8.20.js
│ │ │ └── jquery-ui-1.8.20.min.js
│ │ └── jQuery.UI.Combined.1.8.20.1.nupkg
│ ├── jQuery.Validation.1.9.0.1
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.validate.min.js
│ │ │ └── jquery.validate-vsdoc.js
│ │ └── jQuery.Validation.1.9.0.1.nupkg
│ ├── Microsoft.AspNet.Mvc.3.0.20105.1
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Mvc.dll
│ │ │ └── System.Web.Mvc.xml
│ │ └── Microsoft.AspNet.Mvc.3.0.20105.1.nupkg
│ ├── Microsoft.AspNet.Mvc.zh-Hans.3.0.20105.1
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ └── System.Web.Mvc.xml
│ │ └── Microsoft.AspNet.Mvc.zh-Hans.3.0.20105.1.nupkg
│ ├── Microsoft.AspNet.Providers.Core.1.1
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Providers.dll
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Providers.resources.dll
│ │ ├── Microsoft.AspNet.Providers.Core.1.1.nupkg
│ │ └── readme.html
│ ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.1
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Providers.resources.dll
│ │ └── Microsoft.AspNet.Providers.Core.zh-Hans.1.1.nupkg
│ ├── Microsoft.AspNet.Providers.LocalDB.1.1
│ │ ├── content
│ │ │ └── web.config.transform
│ │ ├── Microsoft.AspNet.Providers.LocalDB.1.1.nupkg
│ │ └── tools
│ │ └── Install.ps1
│ ├── Microsoft.AspNet.Razor.1.0.20105.408
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Razor.dll
│ │ │ └── System.Web.Razor.xml
│ │ └── Microsoft.AspNet.Razor.1.0.20105.408.nupkg
│ ├── Microsoft.AspNet.Razor.zh-Hans.1.0.20105.408
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Razor.resources.dll
│ │ │ └── system.web.razor.xml
│ │ └── Microsoft.AspNet.Razor.zh-Hans.1.0.20105.408.nupkg
│ ├── Microsoft.AspNet.WebPages.1.0.20105.408
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Helpers.dll
│ │ │ ├── System.Web.Helpers.xml
│ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ ├── System.Web.WebPages.Deployment.xml
│ │ │ ├── System.Web.WebPages.dll
│ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ ├── System.Web.WebPages.Razor.xml
│ │ │ └── System.Web.WebPages.xml
│ │ └── Microsoft.AspNet.WebPages.1.0.20105.408.nupkg
│ ├── Microsoft.AspNet.WebPages.zh-Hans.1.0.20105.408
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ ├── system.web.helpers.xml
│ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ ├── system.web.webpages.deployment.xml
│ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ ├── system.web.webpages.razor.xml
│ │ │ ├── System.Web.WebPages.resources.dll
│ │ │ └── system.web.webpages.xml
│ │ └── Microsoft.AspNet.WebPages.zh-Hans.1.0.20105.408.nupkg
│ ├── Microsoft.Web.Infrastructure.1.0.0.0
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── Microsoft.Web.Infrastructure.dll
│ │ └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ ├── Modernizr.2.5.3
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ └── modernizr-2.5.3.js
│ │ └── Modernizr.2.5.3.nupkg
│ └── repositories.config
├── WCFClient
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.xml
│ │ ├── ExamContracts.dll
│ │ ├── ExamContracts.pdb
│ │ ├── WCFClient.exe
│ │ ├── WCFClient.exe.config
│ │ ├── WCFClient.pdb
│ │ ├── WCFClient.vshost.exe
│ │ ├── WCFClient.vshost.exe.config
│ │ ├── WCFClient.vshost.exe.manifest
│ │ └── zh-Hans
│ │ └── EntityFramework.resources.dll
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── WCFClient.csproj.FileListAbsolute.txt
│ │ ├── WCFClient.csprojResolveAssemblyReference.cache
│ │ ├── WCFClient.exe
│ │ └── WCFClient.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── WCFClient.csproj
│ └── WCFClient.csproj.user
├── WCFClient.sln
└── WCFClient.v11.suo
151 directories, 489 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论