基本信息
源码名称:C# IBatis IBatis基础 完整项目
源码大小:2.74M
文件格式:.rar
开发语言:C#
更新时间:2023-06-11
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C# IBatis IBatis基础 完整项目
这个是初学 I batis学习的 , 我在网上找了很长时间都没有看到有 关于C#的Ibatis的例子,所以我上次了一个自己做的例子 供鸟儿们学习用。 全是自己写的,并且 很详
文件清单
├── DB
│ ├── MessageBoard_log.ldf
│ └── MessageBoard.mdf
└── MessageBoard
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── Castle.DynamicProxy.dll
│ │ ├── database.config
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Map
│ │ │ └── SqlClient
│ │ │ └── Message.xml
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ ├── providers.config
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ └── sqlmap.config
│ ├── BLL.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Service
│ ├── IBll.cs
│ └── MessageService.cs
├── MessageBoard.sln
├── MessageBoard.suo
├── Model
│ ├── bin
│ │ └── Debug
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── Message.cs
│ ├── Model.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ ├── Refactor
│ │ │ └── Model.dll
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── User.cs
├── SqlMaps
│ ├── bin
│ │ └── Debug
│ │ ├── Castle.DynamicProxy.dll
│ │ ├── database.config
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Map
│ │ │ └── SqlClient
│ │ │ └── Message.xml
│ │ ├── providers.config
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ ├── Service.SqlMaps.dll
│ │ └── sqlmap.config
│ ├── Code
│ │ └── MyBatis.cs
│ ├── database.config
│ ├── Map
│ │ └── SqlClient
│ │ └── Message.xml
│ ├── obj
│ │ └── Debug
│ │ ├── Refactor
│ │ │ └── SqlMaps.dll
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ ├── SqlMaps.csproj.FileListAbsolute.txt
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── providers.config
│ ├── sqlmap.config
│ └── SqlMaps.csproj
└── WEBUI
├── App_Code
├── App_Data
│ ├── MessageBoard_log.ldf
│ └── MessageBoard.mdf
├── Bin
│ ├── AjaxControlToolkit.dll
│ ├── AjaxControlToolkit.dll.refresh
│ ├── AspNetPager.dll
│ ├── AspNetPager.dll.refresh
│ ├── BLL.dll
│ ├── BLL.pdb
│ ├── Castle.DynamicProxy.dll
│ ├── Castle.DynamicProxy.dll.refresh
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.Common.dll.refresh
│ ├── IBatisNet.DataMapper.dll
│ ├── IBatisNet.DataMapper.dll.refresh
│ ├── Model.dll
│ ├── Model.pdb
│ ├── Service.dll
│ ├── Service.pdb
│ └── SqlMaps.dll
├── css
│ ├── index.css
│ └── jquery-1.4.4.min.js
├── Default.aspx
├── Default.aspx.cs
├── IBatis_DLL
│ ├── Castle.DynamicProxy.dll
│ ├── IBatisNet.Common.dll
│ └── IBatisNet.DataMapper.dll
├── image
│ ├── 03.gif
│ ├── ewlyb_2.jpg
│ ├── ewlyb_3.gif
│ └── ewlyb_5.gif
└── web.config
41 directories, 87 files
C# IBatis IBatis基础 完整项目
这个是初学 I batis学习的 , 我在网上找了很长时间都没有看到有 关于C#的Ibatis的例子,所以我上次了一个自己做的例子 供鸟儿们学习用。 全是自己写的,并且 很详
文件清单
├── DB
│ ├── MessageBoard_log.ldf
│ └── MessageBoard.mdf
└── MessageBoard
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── Castle.DynamicProxy.dll
│ │ ├── database.config
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Map
│ │ │ └── SqlClient
│ │ │ └── Message.xml
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ ├── providers.config
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ └── sqlmap.config
│ ├── BLL.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Service
│ ├── IBll.cs
│ └── MessageService.cs
├── MessageBoard.sln
├── MessageBoard.suo
├── Model
│ ├── bin
│ │ └── Debug
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── Message.cs
│ ├── Model.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ ├── Refactor
│ │ │ └── Model.dll
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── User.cs
├── SqlMaps
│ ├── bin
│ │ └── Debug
│ │ ├── Castle.DynamicProxy.dll
│ │ ├── database.config
│ │ ├── IBatisNet.Common.dll
│ │ ├── IBatisNet.DataMapper.dll
│ │ ├── Map
│ │ │ └── SqlClient
│ │ │ └── Message.xml
│ │ ├── providers.config
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ ├── Service.SqlMaps.dll
│ │ └── sqlmap.config
│ ├── Code
│ │ └── MyBatis.cs
│ ├── database.config
│ ├── Map
│ │ └── SqlClient
│ │ └── Message.xml
│ ├── obj
│ │ └── Debug
│ │ ├── Refactor
│ │ │ └── SqlMaps.dll
│ │ ├── Service.dll
│ │ ├── Service.pdb
│ │ ├── SqlMaps.csproj.FileListAbsolute.txt
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── providers.config
│ ├── sqlmap.config
│ └── SqlMaps.csproj
└── WEBUI
├── App_Code
├── App_Data
│ ├── MessageBoard_log.ldf
│ └── MessageBoard.mdf
├── Bin
│ ├── AjaxControlToolkit.dll
│ ├── AjaxControlToolkit.dll.refresh
│ ├── AspNetPager.dll
│ ├── AspNetPager.dll.refresh
│ ├── BLL.dll
│ ├── BLL.pdb
│ ├── Castle.DynamicProxy.dll
│ ├── Castle.DynamicProxy.dll.refresh
│ ├── IBatisNet.Common.dll
│ ├── IBatisNet.Common.dll.refresh
│ ├── IBatisNet.DataMapper.dll
│ ├── IBatisNet.DataMapper.dll.refresh
│ ├── Model.dll
│ ├── Model.pdb
│ ├── Service.dll
│ ├── Service.pdb
│ └── SqlMaps.dll
├── css
│ ├── index.css
│ └── jquery-1.4.4.min.js
├── Default.aspx
├── Default.aspx.cs
├── IBatis_DLL
│ ├── Castle.DynamicProxy.dll
│ ├── IBatisNet.Common.dll
│ └── IBatisNet.DataMapper.dll
├── image
│ ├── 03.gif
│ ├── ewlyb_2.jpg
│ ├── ewlyb_3.gif
│ └── ewlyb_5.gif
└── web.config
41 directories, 87 files