嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元微信扫码支付:3 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
简单ORM开发源码
自己实现的ORM开发源码。可以传入对象生成SQL也可以传入SQL执行
.
├── DataBaseOperator
│ ├── DataBaseOperator.csproj
│ ├── DataBaseOperator.csproj.user
│ ├── DataBaseOperator.sln
│ ├── Formmate
│ │ ├── BasicFormatter.cs
│ │ ├── DdlFormatter.cs
│ │ ├── FormatStyle.cs
│ │ ├── IFormatter.cs
│ │ └── StringTokenizer.cs
│ ├── Helper
│ │ ├── DataTableHelper.cs
│ │ ├── Logger.cs
│ │ ├── RelationHelper.cs
│ │ └── SQLHelper.cs
│ ├── Interface
│ │ └── IDataBase.cs
│ ├── Model
│ │ ├── ErrorExpection.cs
│ │ └── ParamsMode.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Public
│ │ ├── DataBaseAttribute.cs
│ │ └── DoMain.cs
│ ├── Service
│ │ ├── Connection.cs
│ │ ├── CreateInterFace.cs
│ │ └── OracleDataBase.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DataBaseOperator.dll
│ │ │ ├── DataBaseOperator.pdb
│ │ │ └── System.Data.SqlClient.dll
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DataBaseOperator.csproj.AssemblyReference.cache
│ ├── DataBaseOperator.csproj.CopyComplete
│ ├── DataBaseOperator.csproj.CoreCompileInputs.cache
│ ├── DataBaseOperator.csproj.FileListAbsolute.txt
│ ├── DataBaseOperator.dll
│ ├── DataBaseOperator.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── TestForDataBaseOperator
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TestForDataBaseOperator.csproj
│ ├── Users.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DBOprLog
│ │ │ │ ├── Errorlog
│ │ │ │ │ └── 2022-04-29.log
│ │ │ │ └── InfoLog
│ │ │ │ └── 2022-04-29.log
│ │ │ ├── DataBaseOperator.dll
│ │ │ └── TestForDataBaseOperator.exe
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── TestForDataBaseOperator.Form1.resources
│ ├── TestForDataBaseOperator.Properties.Resources.resources
│ ├── TestForDataBaseOperator.csproj.AssemblyReference.cache
│ ├── TestForDataBaseOperator.csproj.CopyComplete
│ ├── TestForDataBaseOperator.csproj.CoreCompileInputs.cache
│ ├── TestForDataBaseOperator.csproj.FileListAbsolute.txt
│ ├── TestForDataBaseOperator.csproj.GenerateResource.cache
│ ├── TestForDataBaseOperator.exe
│ └── TestForDataBaseOperator.pdb
└── 好例子网_DataBaseOpera.rar
25 directories, 58 files