【例子介绍】Dos.ORM实体类生成器
【相关图片】
【源码结构】
.
├── Dos.ORM实体类生成器_Dos.Tools.zip
└── Dos.Tools
├── Common
│ ├── EntityBuilder.cs
│ ├── StringPlus.cs
│ └── Utils.cs
├── Config
│ ├── databaseconfig.xml
│ ├── dbtype.xml
│ ├── namespace.txt
│ └── sysconfig.xml
├── DbDAL
│ ├── IDbObject.cs
│ ├── MySql
│ │ └── DbObject.cs
│ ├── OleDb
│ │ └── DbObject.cs
│ ├── Oracle
│ │ └── DbObject.cs
│ ├── SQL2000
│ │ └── DbObject.cs
│ ├── SQL2005
│ │ └── DbObject.cs
│ └── Sqlite
│ └── DbObject.cs
├── DbSelect
│ ├── DBMsAccess.Designer.cs
│ ├── DBMsAccess.cs
│ ├── DBMsAccess.resx
│ ├── DBMySql.Designer.cs
│ ├── DBMySql.cs
│ ├── DBMySql.resx
│ ├── DBOracle.Designer.cs
│ ├── DBOracle.cs
│ ├── DBOracle.resx
│ ├── DBSqlServer.Designer.cs
│ ├── DBSqlServer.cs
│ ├── DBSqlServer.resx
│ ├── DbSqlite.Designer.cs
│ ├── DbSqlite.cs
│ └── DbSqlite.resx
├── Dos.Tool.csproj
├── Dos.Tool.csproj.user
├── Dos.Tool.sln
├── Dos.Tool.v12.suo
├── Forms
│ ├── About.Designer.cs
│ ├── About.cs
│ ├── About.resx
│ ├── BatchForm.Designer.cs
│ ├── BatchForm.cs
│ ├── BatchForm.resx
│ ├── CheckVersion.Designer.cs
│ ├── CheckVersion.cs
│ ├── CheckVersion.resx
│ ├── ContentForm.Designer.cs
│ ├── ContentForm.cs
│ ├── ContentForm.resx
│ ├── DatabaseSelect.Designer.cs
│ ├── DatabaseSelect.cs
│ ├── DatabaseSelect.resx
│ ├── LeftPanel.Designer.cs
│ ├── LeftPanel.cs
│ ├── LeftPanel.resx
│ ├── LogShow.Designer.cs
│ ├── LogShow.cs
│ ├── LogShow.resx
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ └── MainForm.resx
├── Ico
│ ├── 16.ico
│ ├── 48.ico
│ ├── 64.ico
│ ├── batch.ICO
│ ├── bdata.ICO
│ ├── cs.ICO
│ ├── database.ICO
│ ├── file.ICO
│ ├── fileopen.ICO
│ ├── msaccess.ICO
│ ├── png-1471.ico
│ ├── pz.ICO
│ ├── server.ICO
│ ├── sqlserver.ICO
│ └── table.ICO
├── LICENSE
├── Model
│ ├── ColumnInfo.cs
│ ├── Connection.cs
│ └── Sysconfig.cs
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── README.md
├── Skin
│ ├── Calmness.ssk
│ ├── DeepCyan.ssk
│ ├── DiamondOlive.ssk
│ ├── GlassGreen.ssk
│ ├── MacOS.ssk
│ ├── Page.ssk
│ ├── XPBlue.ssk
│ ├── office2007.ssk
│ └── vista.ssk
├── Template
│ ├── 中级demo_前端JavaScript.tpl
│ ├── 中级demo_仓库层.tpl
│ ├── 中级demo_参数类.tpl
│ ├── 中级demo_业务逻辑层.tpl
│ ├── 中级demo_缓存处理层.tpl
│ ├── 实体类_v1.10.2.7及以下.tpl
│ ├── 实体类_v1.10.5.5及以下.tpl
│ ├── 实体类_仅FromSql用.tpl
│ ├── 实体类_最新_2016-07-06 - 副本.tpl
│ └── 实体类_最新_2016-07-06.tpl
├── app.config
├── bin
│ ├── Debug
│ │ ├── Config
│ │ │ ├── databaseconfig.xml
│ │ │ ├── dbtype.xml
│ │ │ └── sysconfig.xml
│ │ ├── Dos.Common.dll
│ │ ├── Dos.Common.xml
│ │ ├── Dos.ORM.MySql.dll
│ │ ├── Dos.ORM.MySql.xml
│ │ ├── Dos.ORM.Sqlite.dll
│ │ ├── Dos.ORM.Sqlite.xml
│ │ ├── Dos.ORM.dll
│ │ ├── Dos.Tool.exe
│ │ ├── Dos.Tool.exe.config
│ │ ├── Dos.Tool.pdb
│ │ ├── Dos.Tool.vshost.exe
│ │ ├── Dos.Tool.vshost.exe.config
│ │ ├── Dos.Tool.vshost.exe.manifest
│ │ ├── IBM.Data.DB2.dll
│ │ ├── IrisSkin4.dll
│ │ ├── LICENSE
│ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll
│ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.dll
│ │ ├── MySql.Data.dll
│ │ ├── Oracle.ManagedDataAccess.dll
│ │ ├── RazorEngine.dll
│ │ ├── RazorEngine.xml
│ │ ├── Skin
│ │ │ ├── Calmness.ssk
│ │ │ ├── DeepCyan.ssk
│ │ │ ├── DiamondOlive.ssk
│ │ │ ├── GlassGreen.ssk
│ │ │ ├── MacOS.ssk
│ │ │ ├── Page.ssk
│ │ │ ├── XPBlue.ssk
│ │ │ ├── office2007.ssk
│ │ │ └── vista.ssk
│ │ ├── System.Data.SQLite.dll
│ │ ├── System.Data.SQLite.xml
│ │ ├── System.Web.Razor.dll
│ │ ├── System.Web.Razor.xml
│ │ ├── Template
│ │ │ ├── 中级demo_前端JavaScript.tpl
│ │ │ ├── 中级demo_仓库层.tpl
│ │ │ ├── 中级demo_参数类.tpl
│ │ │ ├── 中级demo_业务逻辑层.tpl
│ │ │ ├── 中级demo_缓存处理层.tpl
│ │ │ ├── 实体类_v1.10.2.7及以下.tpl
│ │ │ ├── 实体类_v1.10.5.5及以下.tpl
│ │ │ ├── 实体类_仅FromSql用.tpl
│ │ │ └── 实体类_最新_2016-07-06.tpl
│ │ ├── WeifenLuo.WinFormsUI.Docking.dll
│ │ ├── log
│ │ │ ├── 201605.txt
│ │ │ ├── 201608.txt
│ │ │ ├── 201609.txt
│ │ │ ├── 201611.txt
│ │ │ ├── 201612.txt
│ │ │ ├── 201701.txt
│ │ │ ├── 201703.txt
│ │ │ ├── 201704.txt
│ │ │ ├── 201803.txt
│ │ │ ├── 201908.txt
│ │ │ ├── 201911.txt
│ │ │ ├── 201912.txt
│ │ │ ├── 202002.txt
│ │ │ ├── 202003.txt
│ │ │ ├── 202008.txt
│ │ │ └── 202012.txt
│ │ ├── x64
│ │ │ └── SQLite.Interop.dll
│ │ └── x86
│ │ └── SQLite.Interop.dll
│ └── Dos.Tools.zip
├── img
│ └── Add.png
├── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Dos.Tool.Properties.Resources.resources
│ │ ├── Dos.Tool.csproj.FileListAbsolute.txt
│ │ ├── Dos.Tool.csproj.GenerateResource.Cache
│ │ ├── Dos.Tool.csprojAssemblyReference.cache
│ │ ├── Dos.Tool.csprojResolveAssemblyReference.cache
│ │ ├── Dos.Tool.exe
│ │ ├── Dos.Tool.pdb
│ │ ├── Dos.Tools.About.resources
│ │ ├── Dos.Tools.BatchForm.resources
│ │ ├── Dos.Tools.ContentForm.resources
│ │ ├── Dos.Tools.DatabaseSelect.resources
│ │ ├── Dos.Tools.DbSelect.DBMsAccess.resources
│ │ ├── Dos.Tools.DbSelect.DBMySql.resources
│ │ ├── Dos.Tools.DbSelect.DBOracle.resources
│ │ ├── Dos.Tools.DbSelect.DBSqlServer.resources
│ │ ├── Dos.Tools.DbSelect.DbSqlite.resources
│ │ ├── Dos.Tools.EntityDesign.Properties.Resources.resources
│ │ ├── Dos.Tools.EntityDesign.csproj.FileListAbsolute.txt
│ │ ├── Dos.Tools.EntityDesign.csproj.GenerateResource.Cache
│ │ ├── Dos.Tools.EntityDesign.exe
│ │ ├── Dos.Tools.EntityDesign.pdb
│ │ ├── Dos.Tools.Forms.CheckVersion.resources
│ │ ├── Dos.Tools.LeftPanel.resources
│ │ ├── Dos.Tools.LogShow.resources
│ │ ├── Dos.Tools.MainForm.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ └── Release
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Dos.Tools.EntityDesign.Properties.Resources.resources
│ ├── Dos.Tools.EntityDesign.csproj.FileListAbsolute.txt
│ ├── Dos.Tools.EntityDesign.csproj.GenerateResource.Cache
│ ├── Dos.Tools.EntityDesign.csprojResolveAssemblyReference.cache
│ ├── Dos.Tools.EntityDesign.exe
│ ├── Dos.Tools.EntityDesign.pdb
│ ├── Hxj.Tools.EntityDesign.About.resources
│ ├── Hxj.Tools.EntityDesign.BatchForm.resources
│ ├── Hxj.Tools.EntityDesign.ContentForm.resources
│ ├── Hxj.Tools.EntityDesign.DatabaseSelect.resources
│ ├── Hxj.Tools.EntityDesign.DbSelect.DBMsAccess.resources
│ ├── Hxj.Tools.EntityDesign.DbSelect.DBMySql.resources
│ ├── Hxj.Tools.EntityDesign.DbSelect.DBOracle.resources
│ ├── Hxj.Tools.EntityDesign.DbSelect.DBSqlServer.resources
│ ├── Hxj.Tools.EntityDesign.DbSelect.DbSqlite.resources
│ ├── Hxj.Tools.EntityDesign.LeftPanel.resources
│ ├── Hxj.Tools.EntityDesign.LogShow.resources
│ ├── Hxj.Tools.EntityDesign.MainForm.resources
│ ├── Hxj.Tools.EntityDesign.Properties.Resources.resources
│ ├── Hxj.Tools.EntityDesign.csproj.FileListAbsolute.txt
│ ├── Hxj.Tools.EntityDesign.csproj.GenerateResource.Cache
│ ├── Hxj.Tools.EntityDesign.csprojResolveAssemblyReference.cache
│ ├── Hxj.Tools.EntityDesign.exe
│ ├── Hxj.Tools.EntityDesign.pdb
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
├── packages
│ ├── DLL
│ │ ├── Dos.ORM.dll
│ │ ├── IBM.Data.DB2.dll
│ │ ├── IrisSkin4.dll
│ │ ├── MySql.Data.dll
│ │ ├── Oracle.ManagedDataAccess.dll
│ │ ├── System.Data.SQLite.DLL
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ ├── Dos.Common.1.0.8.0
│ │ ├── Dos.Common.1.0.8.0.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.Common.XML
│ │ └── Dos.Common.dll
│ ├── Dos.ORM.1.10.0.0
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.ORM.XML
│ │ └── Dos.ORM.dll
│ ├── Dos.ORM.1.10.5.7
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.ORM.XML
│ │ └── Dos.ORM.dll
│ ├── Dos.ORM.1.10.6.5
│ │ ├── Dos.ORM.1.10.6.5.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.ORM.XML
│ │ ├── Dos.ORM.dll
│ │ └── Oracle.ManagedDataAccess.dll
│ ├── Dos.ORM.MySql.1.1.7.0
│ │ ├── Dos.ORM.MySql.1.1.7.0.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.ORM.MySql.XML
│ │ └── Dos.ORM.MySql.dll
│ ├── Dos.ORM.Sqlite.1.0.7.0
│ │ ├── Dos.ORM.Sqlite.1.0.7.0.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── Dos.ORM.Sqlite.XML
│ │ └── Dos.ORM.Sqlite.dll
│ ├── Microsoft.AspNet.Razor.2.0.30506.0
│ │ ├── Microsoft.AspNet.Razor.2.0.30506.0.nupkg
│ │ └── lib
│ │ └── net40
│ │ ├── System.Web.Razor.dll
│ │ └── System.Web.Razor.xml
│ ├── MySql.Data.6.9.8
│ │ ├── CHANGES
│ │ ├── MySql.Data.6.9.8.nupkg
│ │ ├── Readme.txt
│ │ ├── content
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ └── lib
│ │ ├── net20
│ │ │ └── MySql.Data.dll
│ │ ├── net20-cf
│ │ │ └── MySql.Data.CF.dll
│ │ ├── net40
│ │ │ └── MySql.Data.dll
│ │ └── net45
│ │ └── MySql.Data.dll
│ ├── RazorEngine.3.8.2
│ │ ├── LICENSE.md
│ │ ├── RazorEngine.3.8.2.nupkg
│ │ └── lib
│ │ ├── net40
│ │ │ ├── RazorEngine.dll
│ │ │ └── RazorEngine.xml
│ │ └── net45
│ │ ├── RazorEngine.dll
│ │ └── RazorEngine.xml
│ ├── System.Data.SQLite.Core.1.0.101.0
│ │ ├── System.Data.SQLite.Core.1.0.101.0.nupkg
│ │ ├── build
│ │ │ ├── net20
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net40
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net45
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net451
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── net46
│ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ ├── x64
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── x86
│ │ │ └── SQLite.Interop.dll
│ │ └── lib
│ │ ├── net20
│ │ │ ├── System.Data.SQLite.dll
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net40
│ │ │ ├── System.Data.SQLite.dll
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net45
│ │ │ ├── System.Data.SQLite.dll
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net451
│ │ │ ├── System.Data.SQLite.dll
│ │ │ └── System.Data.SQLite.xml
│ │ └── net46
│ │ ├── System.Data.SQLite.dll
│ │ └── System.Data.SQLite.xml
│ └── repositories.config
├── packages.config
├── 其它方式生成实体
│ ├── MSSQL-T4(作者:sunny).rar
│ ├── T4 Msql 实体生成抛砖引玉版(作者:null).zip
│ ├── T4 模板生成器20150803(作者:null).zip
│ ├── T4模板
│ └── 动软-Dos.ORM实体生成模板(作者:窗前的午后).cmt
└── 代码生成器更新日志.txt
90 directories, 303 files
评论