简单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
评论