实例介绍
C#EF连接MySql,需要下载其他支持组件MySql Connection和MySql for Vs在官网可直接下载
【实例截图】
【核心代码】
c1c7c1e7-1d90-4e41-a05a-71a25929eede
└── MySqlDemo
├── Library
│ ├── AutoMapper.dll
│ ├── BasicFramework.Infrastructure.dll
│ ├── Castle.Core.dll
│ ├── ChainsUploadSystem.Contracts.dll
│ ├── ChnCharInfo.dll
│ ├── log4net.dll
│ ├── Memcached.ClientLibrary.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.Unity.Configuration.dll
│ ├── Microsoft.Practices.Unity.dll
│ ├── Microsoft.Practices.Unity.Interception.dll
│ ├── Newtonsoft.Json.dll
│ └── NPOI.dll
├── MySqlDemo.Application.Service
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── AutoMapper.dll
│ │ ├── BasicFramework.Infrastructure.dll
│ │ ├── ChnCharInfo.dll
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── log4net.dll
│ │ ├── Memcached.ClientLibrary.dll
│ │ ├── Microsoft.Practices.Unity.dll
│ │ ├── MySqlDemo.Application.Service.dll
│ │ ├── MySqlDemo.Application.Service.dll.config
│ │ ├── MySqlDemo.Application.Service.pdb
│ │ ├── MySqlDemo.Contracts.dll
│ │ ├── MySqlDemo.Contracts.pdb
│ │ ├── MySqlDemo.Domain.dll
│ │ ├── MySqlDemo.Domain.pdb
│ │ └── NPOI.dll
│ ├── MapUnit.cs
│ ├── MapUnit.tt
│ ├── MySqlDemo.Application.Service.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MySqlDemo.Application.Service.csproj.FileListAbsolute.txt
│ │ ├── MySqlDemo.Application.Service.csprojResolveAssemblyReference.cache
│ │ ├── MySqlDemo.Application.Service.dll
│ │ ├── MySqlDemo.Application.Service.pdb
│ │ └── TempPE
│ │ └── MapUnit.cs.dll
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── StudentServiceImpl.cs
├── MySqlDemo.Common
│ ├── bin
│ │ └── Debug
│ │ ├── MySqlDemo.Common.dll
│ │ └── MySqlDemo.Common.pdb
│ ├── MySqlDemo.Common.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MySqlDemo.Common.csproj.FileListAbsolute.txt
│ │ ├── MySqlDemo.Common.dll
│ │ └── MySqlDemo.Common.pdb
│ └── Properties
│ └── AssemblyInfo.cs
├── MySqlDemo.Contracts
│ ├── bin
│ │ └── Debug
│ │ ├── BasicFramework.Infrastructure.dll
│ │ ├── ChnCharInfo.dll
│ │ ├── log4net.dll
│ │ ├── Memcached.ClientLibrary.dll
│ │ ├── Microsoft.Practices.Unity.dll
│ │ ├── MySqlDemo.Contracts.dll
│ │ ├── MySqlDemo.Contracts.pdb
│ │ └── NPOI.dll
│ ├── Dto
│ │ ├── PartialEfDtoClass.cs
│ │ └── PartialEfDtoClass.tt
│ ├── IStudentService.cs
│ ├── MySqlDemo.Contracts.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MySqlDemo.Contracts.csproj.FileListAbsolute.txt
│ │ ├── MySqlDemo.Contracts.csprojResolveAssemblyReference.cache
│ │ ├── MySqlDemo.Contracts.dll
│ │ ├── MySqlDemo.Contracts.pdb
│ │ └── TempPE
│ │ └── Dto.PartialEfDtoClass.cs.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SearchDto
│ └── StudentSearchDto.cs
├── MySqlDemo.Domain
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── MySqlDemo.Domain.dll
│ │ ├── MySqlDemo.Domain.dll.config
│ │ └── MySqlDemo.Domain.pdb
│ ├── MySqlDemo.Context.cs
│ ├── MySqlDemo.Context.tt
│ ├── MySqlDemo.cs
│ ├── MySqlDemo.Domain.csproj
│ ├── MySqlDemo.tt
│ ├── MySqlDome.Designer.cs
│ ├── MySqlDome.edmx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── edmxResourcesToEmbed
│ │ │ ├── MySqlDome.csdl
│ │ │ ├── MySqlDome.msl
│ │ │ └── MySqlDome.ssdl
│ │ ├── MySqlDemo.Domain.csproj.FileListAbsolute.txt
│ │ ├── MySqlDemo.Domain.csprojResolveAssemblyReference.cache
│ │ ├── MySqlDemo.Domain.dll
│ │ ├── MySqlDemo.Domain.pdb
│ │ └── TempPE
│ │ ├── MySqlDemo.cs.dll
│ │ └── MySqlDome.Designer.cs.dll
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── tb_student.cs
├── MySqlDemo.sln
├── MySqlDemo.suo
├── MySqlDemo.Web
│ ├── App_Start
│ │ ├── FilterConfig.cs
│ │ ├── RouteConfig.cs
│ │ ├── UnityConfig.cs
│ │ └── WebApiConfig.cs
│ ├── bin
│ │ ├── AutoMapper.dll
│ │ ├── BasicFramework.Infrastructure.dll
│ │ ├── ChnCharInfo.dll
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.xml
│ │ ├── log4net.dll
│ │ ├── Memcached.ClientLibrary.dll
│ │ ├── Microsoft.Practices.Unity.Configuration.dll
│ │ ├── Microsoft.Practices.Unity.dll
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── MySqlDemo.Application.Service.dll
│ │ ├── MySqlDemo.Application.Service.pdb
│ │ ├── MySqlDemo.Contracts.dll
│ │ ├── MySqlDemo.Contracts.pdb
│ │ ├── MySqlDemo.Domain.dll
│ │ ├── MySqlDemo.Domain.pdb
│ │ ├── MySqlDemo.Web.dll
│ │ ├── MySqlDemo.Web.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── NPOI.dll
│ │ ├── System.Net.Http.dll
│ │ ├── System.Net.Http.Formatting.dll
│ │ ├── System.Net.Http.Formatting.xml
│ │ ├── System.Net.Http.WebRequest.dll
│ │ ├── System.Net.Http.WebRequest.xml
│ │ ├── System.Net.Http.xml
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Http.dll
│ │ ├── System.Web.Http.WebHost.dll
│ │ ├── System.Web.Http.WebHost.xml
│ │ ├── System.Web.Http.xml
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Mvc.xml
│ │ ├── 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
│ ├── Config
│ │ └── Log4.config
│ ├── Controllers
│ │ └── StudentController.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Log
│ │ ├── DebugLog_20150831
│ │ ├── DebugLog_20150916
│ │ ├── ErrorLog_20150831
│ │ ├── ErrorLog_20150916
│ │ ├── FatalLog_20150831
│ │ ├── FatalLog_20150916
│ │ ├── InfoLog_20150831
│ │ ├── InfoLog_20150916
│ │ ├── WarnLog_20150831
│ │ └── WarnLog_20150916
│ ├── MySqlDemo.Web.csproj
│ ├── MySqlDemo.Web.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MySqlDemo.Web.csproj.FileListAbsolute.txt
│ │ ├── MySqlDemo.Web.csprojResolveAssemblyReference.cache
│ │ ├── MySqlDemo.Web.dll
│ │ └── MySqlDemo.Web.pdb
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Theme
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap-combined.css
│ │ │ │ ├── bootstrap-combined.min.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-multiselect.css
│ │ │ │ ├── bootstrap-table.css
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ └── bootstrap-theme.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── bootstrap-multiselect.js
│ │ │ ├── bootstrap-table.js
│ │ │ ├── cn.js
│ │ │ ├── customize.min.js
│ │ │ ├── jquery.bootstrap.min.js
│ │ │ └── npm.js
│ │ ├── CSS
│ │ │ ├── ChooseGroup.css
│ │ │ ├── Site.css
│ │ │ └── StartTaskStyle.css
│ │ ├── EasyUI
│ │ │ ├── easyui-lang-zh_CN.js
│ │ │ ├── jquery.easyui.min.js
│ │ │ └── themes
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── no.png
│ │ │ │ ├── ok.png
│ │ │ │ ├── pencil.png
│ │ │ │ ├── print.png
│ │ │ │ ├── redo.png
│ │ │ │ ├── reload.png
│ │ │ │ ├── search.png
│ │ │ │ ├── sum.png
│ │ │ │ ├── tip.png
│ │ │ │ └── undo.png
│ │ │ └── metro
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── filebox.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── textbox.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── EasyUiTab.js
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery-2.1.4.js
│ │ ├── Site.css
│ │ ├── site.js
│ │ └── utility.js
│ ├── Views
│ │ ├── Student
│ │ │ ├── _Create.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── _StudentList.cshtml
│ │ └── Web.config
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
└── packages
├── 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
│ │ └── net45
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.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
├── Microsoft.AspNet.Mvc.4.0.20710.0
│ ├── lib
│ │ └── net40
│ │ ├── System.Web.Mvc.dll
│ │ └── System.Web.Mvc.xml
│ └── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg
├── Microsoft.AspNet.Razor.2.0.20710.0
│ ├── lib
│ │ └── net40
│ │ ├── System.Web.Razor.dll
│ │ └── System.Web.Razor.xml
│ └── Microsoft.AspNet.Razor.2.0.20710.0.nupkg
├── Microsoft.AspNet.WebApi.4.0.20710.0
│ └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg
├── Microsoft.AspNet.WebApi.Client.4.0.20710.0
│ ├── lib
│ │ └── net40
│ │ ├── System.Net.Http.Formatting.dll
│ │ └── System.Net.Http.Formatting.xml
│ └── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg
├── Microsoft.AspNet.WebApi.Core.4.0.20710.0
│ ├── content
│ │ └── web.config.transform
│ ├── lib
│ │ └── net40
│ │ ├── System.Web.Http.dll
│ │ └── System.Web.Http.xml
│ └── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg
├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0
│ ├── lib
│ │ └── net40
│ │ ├── System.Web.Http.WebHost.dll
│ │ └── System.Web.Http.WebHost.xml
│ └── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg
├── Microsoft.AspNet.WebPages.2.0.20710.0
│ ├── 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.2.0.20710.0.nupkg
├── Microsoft.Net.Http.2.0.20710.0
│ ├── lib
│ │ ├── net40
│ │ │ ├── System.Net.Http.dll
│ │ │ ├── System.Net.Http.WebRequest.dll
│ │ │ ├── System.Net.Http.WebRequest.xml
│ │ │ └── System.Net.Http.xml
│ │ └── net45
│ │ └── _._
│ └── Microsoft.Net.Http.2.0.20710.0.nupkg
├── Microsoft.Web.Infrastructure.1.0.0.0
│ ├── lib
│ │ └── net40
│ │ └── Microsoft.Web.Infrastructure.dll
│ └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
├── Newtonsoft.Json.4.5.6
│ ├── lib
│ │ └── net40
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── Newtonsoft.Json.4.5.6.nupkg
└── repositories.config
99 directories, 544 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论