├── README.md └── Util6 ORM ├── DataBase └── PlugNT_CMS.mdb ├── Library ├── Newtonsoft.Json.dll └── Newtonsoft.Json.xml ├── Util.Basics.sln ├── Util.Database ├── AppSettings.cs ├── DbBuilder.cs ├── DbConfig.cs ├── DbFactory.cs ├── DbFlags.cs ├── DbLogCallback.cs ├── DbParamInfo.cs ├── DbProvider.cs ├── DbReadWrite.cs ├── DllConfig.cs ├── LGPL-LICENSE.txt ├── PlugNT.Database.suo ├── Properties │ └── AssemblyInfo.cs ├── Util.Database.csproj ├── Util.Database.csproj.user ├── bin │ └── Release │ │ ├── EtermPid.Database.dll │ │ └── EtermPid.Database.pdb └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EtermPid.Database.csproj.FileListAbsolute.txt │ ├── EtermPid.Database.csprojResolveAssemblyReference.cache │ ├── EtermPid.Database.dll │ ├── EtermPid.Database.pdb │ ├── EtermPidManager.Database.csproj.FileListAbsolute.txt │ ├── EtermPidManager.Database.csprojResolveAssemblyReference.cache │ ├── EtermPidManager.Database.dll │ ├── EtermPidManager.Database.pdb │ ├── Kxnet.Database.csproj.FileListAbsolute.txt │ ├── Kxnet.Database.dll │ ├── Kxnet.Database.pdb │ ├── PlugNT.Database.csproj.FileListAbsolute.txt │ ├── PlugNT.Database.csprojResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Ue.Db.csproj.FileListAbsolute.txt │ ├── Ue.Db.dll │ ├── Ue.Db.pdb │ └── Util.Database.csproj.FileListAbsolute.txt │ └── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EtermPid.Database.csproj.FileListAbsolute.txt │ ├── EtermPid.Database.csprojResolveAssemblyReference.cache │ ├── EtermPid.Database.dll │ └── EtermPid.Database.pdb ├── Util.Mapping ├── Attributes.cs ├── BaseMapper.cs ├── DbFieldInfo.cs ├── EntityBuilder.cs ├── LGPL-LICENSE.txt ├── MapingHelper.cs ├── Models.cs ├── Properties │ └── AssemblyInfo.cs ├── SqlHelper.cs ├── SqlLmdResolver.cs ├── Types.cs ├── Util.EntityMapping.csproj ├── Util.EntityMapping.csproj.user └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Util.Database.Mapping.csproj.FileListAbsolute.txt │ ├── Util.Database.Mapping.csprojResolveAssemblyReference.cache │ ├── Util.Database.Mapping.dll │ ├── Util.Database.Mapping.pdb │ ├── Util.EntityMapping.csproj.FileListAbsolute.txt │ ├── Util.Mapping.csproj.FileListAbsolute.txt │ ├── Util.Mapping.csprojResolveAssemblyReference.cache │ ├── Util.Mapping.dll │ └── Util.Mapping.pdb └── Util.UnitTest ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── TestDatabase_Unit.cs ├── Util.UnitTest.csproj ├── Util.UnitTest.csproj.user ├── bin └── Debug │ ├── Util.UnitTest.vshost.exe │ ├── Util.UnitTest.vshost.exe.config │ └── Util.UnitTest.vshost.exe.manifest └── obj └── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── ResolveAssemblyReference.cache ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Util.Test.csproj.FileListAbsolute.txt ├── Util.Test.csprojResolveAssemblyReference.cache ├── Util.Test.exe ├── Util.Test.pdb └── Util.UnitTest.csproj.FileListAbsolute.txt /README.md: -------------------------------------------------------------------------------- 1 | 2 | ![Util6 ORM](http://www.util6.com/content/website/images/logo.png "Util6 ORM") 3 | ## Util6 ORM 创建于2014年,于2019年正式开源,是在Util.Database数据库框架依赖的基础上实现的一个轻量级强类型ORM组件。 4 | > 官方网站:https://www.util6.com 5 | > 测试示例:https://www.cnblogs.com/dreamman/p/10805041.html 6 | 7 | ## Util6 ORM 特点 8 | 9 | * 上手容易,语法简单,性能优,体积小 10 | * 核心方法:查询(Query) 、新增(Insert)、更新(Update)、删除(Delete) 11 | * 支持多数据库Sql Server,MySql,Access,等数据库 12 | * 支持数据库读写分离配置、仓储操作、日志过滤、强类型约束、充血贫血模式 13 | 14 | 15 | 16 | ### 新增操作 17 | ```csharp 18 | public InfoResult Insert(MisProjectEntity project) 19 | { 20 | var result = new InfoResult { IsSuccess = false }; 21 | if (storage.MisProject.Query(m => m.Name == project.Name || m.ID == project.ID).ToCount() > 0) 22 | { 23 | return result.SetMessage("添加项目失败,已存在相同的项目!"); 24 | } 25 | 26 | project.Remark = project.Remark ?? string.Empty; 27 | project.DatCreate = DateTime.Now; 28 | project.UpdateFlag = UtilityHelper.GetGuidForLong().ToString(); 29 | project.AllowUserTypes = project.AllowUserTypes ?? string.Empty; 30 | project.AreaName = project.AreaName ?? string.Empty; 31 | 32 | var pid = storage.MisProject.SetEntity(project).Insert(); 33 | if (pid <= 0) return result.SetMessage("添加项目失败!"); 34 | CacheManageCore.RemoveProjects(); 35 | 36 | var logInfo = string.Format("添加项目为{0}", project.Name); 37 | WriteDbLogInfo(LogOperType.新增, logInfo); 38 | return result.SetMessage($"添加项目成功!").SetSuccess(); 39 | } 40 | ``` 41 | 42 | 43 | ### 更新操作 44 | ```csharp 45 | public InfoResult Update(MisUserEntity user) 46 | { 47 | var result = new InfoResult { IsSuccess = false }; 48 | var entity = storage.MisUser.Query(m => m.ID == user.ID).ToEntity(); 49 | if (entity == null) 50 | { 51 | return result.SetMessage("ID为" + user.ID + "的用户不存在!"); 52 | } 53 | if (!string.IsNullOrWhiteSpace(user.Password)) 54 | { 55 | entity.Password = entity.SaltPassword(user.Password); 56 | if (user.Password.Length < 6 || user.Password.Length > 20) 57 | { 58 | return result.SetMessage("修改用户失败,密码长度必须在6-20范围内!"); 59 | } 60 | } 61 | entity.NickName = user.NickName ?? string.Empty; 62 | entity.IsEnabled = user.IsEnabled; 63 | 64 | var flag = user.UpdateFlag ?? string.Empty; 65 | entity.UpdateFlag = UtilityHelper.GetGuidForLong().ToString(); 66 | //修改包括扩展用户 67 | if (!UserExtendCore.UpdateUser(entity, flag)) 68 | { 69 | return result.SetMessage("修改用户失败,该记录可能在其他地方修改过!"); 70 | } 71 | CacheManageCore.RemoveUser(entity.ID); 72 | CacheManageCore.RemoveRightsInfo(entity.ID); 73 | 74 | var logInfo = $"修改用户为{user.UserName}"; 75 | WriteDbLogInfo(LogOperType.更新, logInfo); 76 | return result.SetMessage($"修改用户成功!").SetSuccess(); 77 | } 78 | ``` 79 | 80 | 81 | ### 删除操作 82 | ```csharp 83 | public InfoResult Delete(int id) 84 | { 85 | var result = new InfoResult { IsSuccess = false }; 86 | if (!storage.MisProject.Delete(m=>m.ID == id)) return result.SetMessage("删除项目失败!"); 87 | CacheManageCore.RemoveProjects(); 88 | 89 | var logInfo = string.Format("删除项目ID为{0}", id); 90 | WriteDbLogInfo(LogOperType.删除, logInfo); 91 | return result.SetMessage($"删除项目成功!").SetSuccess(); 92 | } 93 | ``` 94 | 95 | 96 | ### 分页条件查询 97 | ```csharp 98 | public FindPageListOutput FindPageList(FindPageListInput input) 99 | { 100 | //查找日期 101 | var mapper = storage.MisLog.Query(); 102 | if (!string.IsNullOrWhiteSpace(input.DatBegin)) 103 | { 104 | var datBegin = DateTime.Parse(input.DatBegin); 105 | mapper.And(m => m.DatCreate >= datBegin); 106 | } 107 | if (!string.IsNullOrWhiteSpace(input.DatEnd)) 108 | { 109 | var datEnd = DateTime.Parse(input.DatEnd); 110 | mapper.And(m => m.DatCreate <= datEnd); 111 | } 112 | //查找操作员 113 | if (!string.IsNullOrWhiteSpace(input.Oper)) 114 | { 115 | mapper.And(m => m.Oper == input.Oper); 116 | } 117 | //分页及排序 118 | if (!string.IsNullOrWhiteSpace(input.SortName)) 119 | { 120 | if (input.SortType == 0) 121 | { 122 | mapper.SortAsc(input.SortName); 123 | } 124 | else 125 | { 126 | mapper.SortDesc(input.SortName); 127 | } 128 | } 129 | 130 | var output = new FindPageListOutput(); 131 | output.RecordCount = mapper.ToCount(); 132 | output.LogList = mapper.ToList(input.PageSize, input.CurrPage, output.RecordCount); 133 | return output; 134 | } 135 | ``` 136 | 137 | 138 | ### 多表查询 139 | ```csharp 140 | private MisDataAccessStorage storage = new MisDataAccessStorage(); 141 | public FindMaintainRoleOutput FindMaintainRole(int roleID) 142 | { 143 | var output = new FindMaintainRoleOutput(); 144 | output.Role = storage.MisRole.Query(m => m.ID == roleID).ToEntity(); 145 | if (output.Role != null) 146 | { 147 | output.Project = storage.MisProject.Query(m => m.ID == output.Role.ProjectID).ToEntity(); 148 | output.UserRoleList = storage.MisUserRole.Query(m => m.RoleID == output.Role.ID).ToList(); 149 | output.RoleRightsList = storage.MisRoleRights.Query(m => m.RoleID == output.Role.ID).ToList(); 150 | output.RoleExtendList = storage.MisRoleExtend.Query(m => m.RoleID == output.Role.ID).ToList(); 151 | var rightsIDList = output.RoleRights.Select(m => m.RightsID).ToList(); 152 | if (rightsIDList.Count > 0) 153 | { 154 | output.RightsList = storage.MisRights.Query(m=> rightsIDList.Contains(m.ID)).ToList(); 155 | output.RightsPageList = storage.MisRightsPage.Query(m => rightsIDList.Contains(m.RightsID)).ToList(); 156 | } 157 | } 158 | return output; 159 | } 160 | ``` 161 | 162 | 163 | ### 扩展关联 164 | ```csharp 165 | public List FindRightsPageSet(int userID,int projectID) 166 | { 167 | var config = DbReadConfig; 168 | var strSql = $@"SELECT {AllFields} FROM [{T.MisRightsPage}] WHERE {T.MisRightsPage_ProjectID}=@ProjectID and {T.MisRightsPage_RightsID} IN 169 | ( 170 | SELECT {T.MisRoleRights_RightsID} FROM [{T.MisRoleRights}] WHERE {T.MisRoleRights_RoleID} IN 171 | ( 172 | SELECT a.{T.MisUserRole_RoleID} FROM [{T.MisUserRole}] as a inner join [{T.MisRole}] as b on a.{T.MisUserRole_RoleID}=b.{T.MisRole_ID} 173 | WHERE a.{T.MisUserRole_UserID}=@UserID and b.{T.MisRole_IsEnabled} = 1 174 | ) 175 | )"; 176 | var paramters = new { ProjectID = projectID, UserID = userID }; 177 | return GetList(new DbBuilder(config).GetDataReader(strSql, paramters)); 178 | } 179 | ``` 180 | 181 | 182 | ### 批量操作 183 | ```csharp 184 | public void Execute(TicketOrder order) 185 | { 186 | var adultPolicy = storage.PmsPolicyTemplate.Query(m => m.ID == order.AdultPolicyID).ToEntity(); 187 | if (adultPolicy != null) 188 | { 189 | //只修改字段SellCabinCount 190 | storage.PmsPolicyTemplate.SetEntity(adultPolicy).SetPartHandled(); 191 | adultPolicy.SellCabinCount = adultPolicy.SellCabinCount - travelerInfo.AdultCount; 192 | storage.PmsPolicyTemplate.AttachUpdate(m => m.ID == order.AdultPolicyID); 193 | } 194 | if (!string.IsNullOrWhiteSpace(order.ChildPolicyID)) 195 | { 196 | var childPolicy = storage.PmsPolicyTemplate.Query(m => m.ID == order.ChildPolicyID).ToEntity(); 197 | if (childPolicy != null) 198 | { 199 | storage.PmsPolicyTemplate.SetEntity(childPolicy).SetPartHandled(); 200 | childPolicy.SellCabinCount = childPolicy.SellCabinCount - (travelerInfo.ChildCount + travelerInfo.InfantCount); 201 | storage.PmsPolicyTemplate.AttachUpdate(m => m.ID == order.ChildPolicyID); 202 | } 203 | } 204 | storage.SaveChanges(); 205 | } 206 | ``` 207 | 208 | 209 | 210 | -------------------------------------------------------------------------------- /Util6 ORM/DataBase/PlugNT_CMS.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/DataBase/PlugNT_CMS.mdb -------------------------------------------------------------------------------- /Util6 ORM/Library/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Library/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Basics.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Util.Database", "Util.Database\Util.Database.csproj", "{D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Util.EntityMapping", "Util.Mapping\Util.EntityMapping.csproj", "{58189D80-5B3E-464C-8840-527206D278BF}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Util.UnitTest", "Util.UnitTest\Util.UnitTest.csproj", "{45FB4BE3-2341-4087-97AC-64F42EF3AC77}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Debug|Any CPU = Debug|Any CPU 15 | Debug|Mixed Platforms = Debug|Mixed Platforms 16 | Debug|x86 = Debug|x86 17 | Release|Any CPU = Release|Any CPU 18 | Release|Mixed Platforms = Release|Mixed Platforms 19 | Release|x86 = Release|x86 20 | EndGlobalSection 21 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 22 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 23 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Debug|Any CPU.Build.0 = Debug|Any CPU 24 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 25 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 26 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Debug|x86.ActiveCfg = Debug|Any CPU 27 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Release|Any CPU.ActiveCfg = Release|Any CPU 28 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Release|Any CPU.Build.0 = Release|Any CPU 29 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 30 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Release|Mixed Platforms.Build.0 = Release|Any CPU 31 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA}.Release|x86.ActiveCfg = Release|Any CPU 32 | {58189D80-5B3E-464C-8840-527206D278BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 33 | {58189D80-5B3E-464C-8840-527206D278BF}.Debug|Any CPU.Build.0 = Debug|Any CPU 34 | {58189D80-5B3E-464C-8840-527206D278BF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 35 | {58189D80-5B3E-464C-8840-527206D278BF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 36 | {58189D80-5B3E-464C-8840-527206D278BF}.Debug|x86.ActiveCfg = Debug|Any CPU 37 | {58189D80-5B3E-464C-8840-527206D278BF}.Release|Any CPU.ActiveCfg = Release|Any CPU 38 | {58189D80-5B3E-464C-8840-527206D278BF}.Release|Any CPU.Build.0 = Release|Any CPU 39 | {58189D80-5B3E-464C-8840-527206D278BF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 40 | {58189D80-5B3E-464C-8840-527206D278BF}.Release|Mixed Platforms.Build.0 = Release|Any CPU 41 | {58189D80-5B3E-464C-8840-527206D278BF}.Release|x86.ActiveCfg = Release|Any CPU 42 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 43 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|Any CPU.Build.0 = Debug|Any CPU 44 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 45 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 46 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|x86.ActiveCfg = Debug|Any CPU 47 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Debug|x86.Build.0 = Debug|Any CPU 48 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|Any CPU.ActiveCfg = Release|Any CPU 49 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|Any CPU.Build.0 = Release|Any CPU 50 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 51 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|Mixed Platforms.Build.0 = Release|Any CPU 52 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|x86.ActiveCfg = Release|Any CPU 53 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77}.Release|x86.Build.0 = Release|Any CPU 54 | EndGlobalSection 55 | GlobalSection(SolutionProperties) = preSolution 56 | HideSolutionNode = FALSE 57 | EndGlobalSection 58 | EndGlobal 59 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/AppSettings.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbBuilder.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbConfig.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbFactory.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbFlags.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbLogCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbLogCallback.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbParamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbParamInfo.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbProvider.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DbReadWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DbReadWrite.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/DllConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/DllConfig.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/LGPL-LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/PlugNT.Database.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/PlugNT.Database.suo -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/Util.Database.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 9.0.21022 7 | 2.0 8 | {D45C84FA-A2F1-4B61-8DF3-BEE9FB8491AA} 9 | Library 10 | Properties 11 | Util.Database 12 | Util.Database 13 | v4.5 14 | 512 15 | 16 | 17 | 3.5 18 | 19 | publish\ 20 | true 21 | Disk 22 | false 23 | Foreground 24 | 7 25 | Days 26 | false 27 | false 28 | true 29 | 0 30 | 1.0.0.%2a 31 | false 32 | false 33 | true 34 | 35 | 36 | 37 | true 38 | full 39 | false 40 | bin\Debug\ 41 | DEBUG;TRACE 42 | prompt 43 | 4 44 | bin\Debug\Util.Database.xml 45 | AllRules.ruleset 46 | false 47 | 48 | 49 | pdbonly 50 | true 51 | bin\Release\ 52 | TRACE 53 | prompt 54 | 4 55 | AllRules.ruleset 56 | false 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | False 82 | .NET Framework 3.5 SP1 Client Profile 83 | false 84 | 85 | 86 | False 87 | .NET Framework 3.5 SP1 88 | true 89 | 90 | 91 | False 92 | Windows Installer 3.1 93 | true 94 | 95 | 96 | 97 | 98 | copy "$(TargetDir)Util.Database.dll" "$(TargetDir)..\..\..\Library\" 99 | copy "$(TargetDir)Util.Database.pdb" "$(TargetDir)..\..\..\Library\" 100 | copy "$(TargetDir)Util.Database.xml" "$(TargetDir)..\..\..\Library\" 101 | 102 | 109 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/Util.Database.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/bin/Release/EtermPid.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/bin/Release/EtermPid.Database.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/bin/Release/EtermPid.Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/bin/Release/EtermPid.Database.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPid.Database.xml 2 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPid.Database.dll 3 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPid.Database.pdb 4 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPid.Database.csprojResolveAssemblyReference.cache 5 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPid.Database.dll 6 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPid.Database.pdb 7 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\bin\Debug\EtermPid.Database.xml 8 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\bin\Debug\EtermPid.Database.dll 9 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\bin\Debug\EtermPid.Database.pdb 10 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Debug\EtermPid.Database.dll 11 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Debug\EtermPid.Database.pdb 12 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Debug\EtermPid.Database.csprojResolveAssemblyReference.cache 13 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPid.Database.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPidManager.Database.xml 2 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPidManager.Database.dll 3 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\EtermPidManager.Database.pdb 4 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\bin\Debug\MySql.Data.xml 5 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPidManager.Database.dll 6 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPidManager.Database.pdb 7 | D:\agui\work\my_eterm\EtermPidManager\EtermPidManager.Database\obj\Debug\EtermPidManager.Database.csprojResolveAssemblyReference.cache 8 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/EtermPidManager.Database.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Kxnet.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Database.xml 2 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Database.dll 3 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Database.pdb 4 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\MySql.Data.dll 5 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 6 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\MySql.Data.xml 7 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 8 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\obj\Debug\ResolveAssemblyReference.cache 9 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\obj\Debug\Kxnet.Database.dll 10 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\obj\Debug\Kxnet.Database.pdb 11 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Common.dll 12 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Safe.dll 13 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Common.xml 14 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\Kxnet.Safe.xml 15 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\IBatisNet.Common.dll 16 | F:\agui\work\fwxt\Kxnet\Kxnet.Database\bin\Debug\IBatisNet.DataMapper.dll 17 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Kxnet.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/Kxnet.Database.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Kxnet.Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/Kxnet.Database.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/PlugNT.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\obj\Debug\ResolveAssemblyReference.cache 2 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Database.xml 3 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Database.dll 4 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Database.pdb 5 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\MySql.Data.dll 6 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Common.dll 7 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Custom.dll 8 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Safe.dll 9 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\ICSharpCode.SharpZipLib.dll 10 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Common.pdb 11 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Common.xml 12 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Safe.pdb 13 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\bin\Debug\PlugNT.Custom.pdb 14 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\obj\Debug\PlugNT.Database.dll 15 | E:\F\code\Aspx\PlugNTComponents\Ue.Db\obj\Debug\PlugNT.Database.pdb 16 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.xml 17 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.dll 18 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 19 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.dll 20 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.dll 21 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.dll 22 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.dll 23 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 24 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 25 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.xml 26 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.pdb 27 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.pdb 28 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 29 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.dll 30 | E:\F\code\Aspx\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 31 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.dll 32 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 33 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.dll 34 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.dll 35 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.dll 36 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 37 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 38 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.xml 39 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.pdb 40 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.pdb 41 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 42 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.dll 43 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 44 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 45 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 46 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.xml 47 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.xml 48 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.xml 49 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.xml 50 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.dll 51 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.xml 52 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 53 | E:\F\code\DoNet\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.xml 54 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.xml 55 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.dll 56 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 57 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 58 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 59 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.dll 60 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.dll 61 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.dll 62 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.dll 63 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 64 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.xml 65 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.xml 66 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.xml 67 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 68 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.xml 69 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.pdb 70 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Custom.xml 71 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.pdb 72 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.xml 73 | E:\f\files\code\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 74 | E:\f\files\code\PlugNTComponents\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 75 | E:\f\files\code\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.dll 76 | E:\f\files\code\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 77 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.xml 78 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.dll 79 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 80 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 81 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 82 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.dll 83 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.dll 84 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.dll 85 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 86 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.xml 87 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.xml 88 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.xml 89 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 90 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.xml 91 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.pdb 92 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.xml 93 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 94 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 95 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.dll 96 | E:\code\donet_mycode\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 97 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.xml 98 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.dll 99 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 100 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 101 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 102 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.dll 103 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.dll 104 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.dll 105 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 106 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.Common.xml 107 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.xml 108 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\MySql.Data.xml 109 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 110 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Common.xml 111 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.pdb 112 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\PlugNT.Safe.xml 113 | E:\agui\code\PlugNTComponents\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 114 | E:\agui\code\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.dll 115 | E:\agui\code\PlugNTComponents\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 116 | E:\agui\code\PlugNTComponents\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 117 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\MySql.Data.xml 118 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Database.xml 119 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Database.dll 120 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 121 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 122 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 123 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\MySql.Data.dll 124 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugN.Safe.dll 125 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Common.dll 126 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 127 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 128 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugNT.Common.xml 129 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 130 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\PlugN.Safe.xml 131 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 132 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 133 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\obj\Debug\PlugNT.Database.dll 134 | F:\agui\work\fwxt\BaojianAspNet\Kxnet\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 135 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Database.xml 136 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Database.dll 137 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 138 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 139 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 140 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\MySql.Data.dll 141 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugN.Safe.dll 142 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Common.dll 143 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 144 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 145 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugNT.Common.xml 146 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 147 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\PlugN.Safe.xml 148 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\MySql.Data.xml 149 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 150 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 151 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\obj\Debug\PlugNT.Database.dll 152 | F:\agui\test\temp\mytest\PlugNT_MVC_CMS\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 153 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Database.dll 154 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 155 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\IBatisNet.Common.dll 156 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\IBatisNet.DataMapper.dll 157 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\MySql.Data.dll 158 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugN.Safe.dll 159 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Common.dll 160 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 161 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 162 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Common.xml 163 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 164 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugN.Safe.xml 165 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\MySql.Data.xml 166 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 167 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 168 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\obj\Debug\PlugNT.Database.dll 169 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 170 | E:\agui\mycode\PlugNT_CMS_5.0_201409131738\PlugNT.Database\bin\Debug\PlugNT.Database.xml 171 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Database.dll 172 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 173 | F:\agui\test\last\PlugNT.Database\bin\Debug\MySql.Data.dll 174 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugN.Safe.dll 175 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Common.dll 176 | F:\agui\test\last\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 177 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 178 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Common.xml 179 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 180 | F:\agui\test\last\PlugNT.Database\bin\Debug\PlugN.Safe.xml 181 | F:\agui\test\last\PlugNT.Database\bin\Debug\MySql.Data.xml 182 | F:\agui\test\last\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 183 | F:\agui\test\last\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 184 | F:\agui\test\last\PlugNT.Database\obj\Debug\PlugNT.Database.dll 185 | F:\agui\test\last\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 186 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Database.xml 187 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Database.dll 188 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 189 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\MySql.Data.dll 190 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugN.Safe.dll 191 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Common.dll 192 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 193 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 194 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugNT.Common.xml 195 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 196 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\PlugN.Safe.xml 197 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\MySql.Data.xml 198 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 199 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 200 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\obj\Debug\PlugNT.Database.dll 201 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412011818\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 202 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugNT.Database.dll 203 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 204 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\MySql.Data.dll 205 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugN.Safe.dll 206 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugNT.Common.dll 207 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 208 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 209 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugNT.Common.xml 210 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 211 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\PlugN.Safe.xml 212 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\MySql.Data.xml 213 | F:\UploaderFiles\last\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 214 | F:\UploaderFiles\last\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 215 | F:\UploaderFiles\last\PlugNT.Database\obj\Debug\PlugNT.Database.dll 216 | F:\UploaderFiles\last\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 217 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Database.xml 218 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Database.dll 219 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 220 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\MySql.Data.dll 221 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugN.Safe.dll 222 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Common.dll 223 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 224 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 225 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugNT.Common.xml 226 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 227 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\PlugN.Safe.xml 228 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\MySql.Data.xml 229 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 230 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\obj\Debug\ResolveAssemblyReference.cache 231 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\obj\Debug\PlugNT.Database.dll 232 | E:\agui\mycode\PlugNT_CMS_5.0_last_201412101818\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 233 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Database.xml 234 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Database.dll 235 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 236 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\MySql.Data.dll 237 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugN.Safe.dll 238 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Common.dll 239 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 240 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Common.pdb 241 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugNT.Common.xml 242 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugN.Safe.pdb 243 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\PlugN.Safe.xml 244 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\MySql.Data.xml 245 | D:\agui\test\last\last_201501051818\PlugNT.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 246 | D:\agui\test\last\last_201501051818\PlugNT.Database\obj\Debug\PlugNT.Database.csprojResolveAssemblyReference.cache 247 | D:\agui\test\last\last_201501051818\PlugNT.Database\obj\Debug\PlugNT.Database.dll 248 | D:\agui\test\last\last_201501051818\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 249 | D:\agui\test\last\PlugNT.Database\bin\Debug\EtermPid.Database.xml 250 | D:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Database.dll 251 | D:\agui\test\last\PlugNT.Database\bin\Debug\PlugNT.Database.pdb 252 | D:\agui\test\last\PlugNT.Database\obj\Debug\PlugNT.Database.csprojResolveAssemblyReference.cache 253 | D:\agui\test\last\PlugNT.Database\obj\Debug\PlugNT.Database.dll 254 | D:\agui\test\last\PlugNT.Database\obj\Debug\PlugNT.Database.pdb 255 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\EtermPid.Database.xml 256 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\PlugNT.Database.dll 257 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\PlugNT.Database.pdb 258 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\ResolveAssemblyReference.cache 259 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\PlugNT.Database.dll 260 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\PlugNT.Database.pdb 261 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/PlugNT.Database.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/PlugNT.Database.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Ue.Db.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Db.dll 2 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Db.pdb 3 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\MySql.Data.dll 4 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Common.dll 5 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Security.dll 6 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\ICSharpCode.SharpZipLib.dll 7 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Security.pdb 8 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Security.xml 9 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Common.pdb 10 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Common.xml 11 | E:\F\code\Aspx\UeComponents\Db\obj\Debug\ResolveAssemblyReference.cache 12 | E:\F\code\Aspx\UeComponents\Db\obj\Debug\Ue.Db.dll 13 | E:\F\code\Aspx\UeComponents\Db\obj\Debug\Ue.Db.pdb 14 | E:\F\code\Aspx\UeComponents\Db\bin\Debug\Ue.Db.XML 15 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\Ue.Db.XML 16 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\Ue.Db.dll 17 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\Ue.Db.pdb 18 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\MySql.Data.dll 19 | E:\F\code\Aspx\UeComponents\Ue.Db\obj\Debug\ResolveAssemblyReference.cache 20 | E:\F\code\Aspx\UeComponents\Ue.Db\obj\Debug\Ue.Db.dll 21 | E:\F\code\Aspx\UeComponents\Ue.Db\obj\Debug\Ue.Db.pdb 22 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\Ue.Custom.dll 23 | E:\F\code\Aspx\UeComponents\Ue.Db\bin\Debug\Ue.Custom.pdb 24 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Ue.Db.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/Ue.Db.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Ue.Db.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Debug/Ue.Db.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Debug/Util.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\EtermPid.Database.xml 2 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\PlugNT.Database.dll 3 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\bin\Debug\PlugNT.Database.pdb 4 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\ResolveAssemblyReference.cache 5 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\PlugNT.Database.dll 6 | E:\agui\mycode\Utl\PlugNT.Database(20151105)等4个文件\PlugNT.Database(20151105)\obj\Debug\PlugNT.Database.pdb 7 | D:\agui\test\last\Util(20160126)\Util.Database\bin\Debug\EtermPid.Database.xml 8 | D:\agui\test\last\Util(20160126)\Util.Database\bin\Debug\PlugNT.Database.dll 9 | D:\agui\test\last\Util(20160126)\Util.Database\bin\Debug\PlugNT.Database.pdb 10 | D:\agui\test\last\Util(20160126)\Util.Database\obj\Debug\PlugNT.Database.dll 11 | D:\agui\test\last\Util(20160126)\Util.Database\obj\Debug\PlugNT.Database.pdb 12 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\bin\Debug\PlugNT.Database.dll 13 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\bin\Debug\PlugNT.Database.pdb 14 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 15 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\obj\Debug\PlugNT.Database.dll 16 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\obj\Debug\PlugNT.Database.pdb 17 | E:\agui\mycode\Utl\Util(20160205)\Util.Database\bin\Debug\EtermPid.Database.xml 18 | D:\agui\test\last\Util(20160319)\Util.Database\bin\Debug\EtermPid.Database.xml 19 | D:\agui\test\last\Util(20160319)\Util.Database\bin\Debug\PlugNT.Database.dll 20 | D:\agui\test\last\Util(20160319)\Util.Database\bin\Debug\PlugNT.Database.pdb 21 | D:\agui\test\last\Util(20160319)\Util.Database\obj\Debug\PlugNT.Database.dll 22 | D:\agui\test\last\Util(20160319)\Util.Database\obj\Debug\PlugNT.Database.pdb 23 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Database.xml 24 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Database.dll 25 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Database.pdb 26 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Common.dll 27 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\ICSharpCode.SharpZipLib.dll 28 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\HtmlAgilityPack.dll 29 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Common.pdb 30 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\ICSharpCode.SharpZipLib.xml 31 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\HtmlAgilityPack.xml 32 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 33 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\obj\Debug\Util.Database.dll 34 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\obj\Debug\Util.Database.pdb 35 | E:\agui\mycode\Utl\Util(20160408_unfinished)\Util.Database\bin\Debug\Util.Common.xml 36 | D:\agui\test\last\Util\Util.Database\bin\Debug\Util.Database.xml 37 | D:\agui\test\last\Util\Util.Database\bin\Debug\Util.Database.dll 38 | D:\agui\test\last\Util\Util.Database\bin\Debug\Util.Database.pdb 39 | D:\agui\test\last\Util\Util.Database\obj\Debug\Util.Database.dll 40 | D:\agui\test\last\Util\Util.Database\obj\Debug\Util.Database.pdb 41 | D:\agui\test\last\Util(20160413_2)\Util.Database\bin\Debug\Util.Database.xml 42 | D:\agui\test\last\Util(20160413_2)\Util.Database\bin\Debug\Util.Database.dll 43 | D:\agui\test\last\Util(20160413_2)\Util.Database\bin\Debug\Util.Database.pdb 44 | D:\agui\test\last\Util(20160413_2)\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 45 | D:\agui\test\last\Util(20160413_2)\Util.Database\obj\Debug\Util.Database.dll 46 | D:\agui\test\last\Util(20160413_2)\Util.Database\obj\Debug\Util.Database.pdb 47 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\bin\Debug\Util.Database.xml 48 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\bin\Debug\Util.Database.dll 49 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\bin\Debug\Util.Database.pdb 50 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 51 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\obj\Debug\Util.Database.dll 52 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database\obj\Debug\Util.Database.pdb 53 | E:\agui\mycode\Utl\Util(20160601)\Util.Database\bin\Debug\Util.Database.dll 54 | E:\agui\mycode\Utl\Util(20160601)\Util.Database\bin\Debug\Util.Database.pdb 55 | E:\agui\mycode\Utl\Util(20160601)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 56 | E:\agui\mycode\Utl\Util(20160601)\Util.Database\obj\Debug\Util.Database.dll 57 | E:\agui\mycode\Utl\Util(20160601)\Util.Database\obj\Debug\Util.Database.pdb 58 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\bin\Debug\Util.Database.xml 59 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\bin\Debug\Util.Database.dll 60 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\bin\Debug\Util.Database.pdb 61 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 62 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\obj\Debug\Util.Database.dll 63 | E:\agui\mycode\Utl\Util(20160626)\Util.Database\obj\Debug\Util.Database.pdb 64 | E:\agui\mycode\Utl\Util(20160701)\Util.Database\bin\Debug\Util.Database.dll 65 | E:\agui\mycode\Utl\Util(20160701)\Util.Database\bin\Debug\Util.Database.pdb 66 | E:\agui\mycode\Utl\Util(20160701)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 67 | E:\agui\mycode\Utl\Util(20160701)\Util.Database\obj\Debug\Util.Database.dll 68 | E:\agui\mycode\Utl\Util(20160701)\Util.Database\obj\Debug\Util.Database.pdb 69 | E:\agui\mycode\Utl\Util(20160708)\Util.Database\bin\Debug\Util.Database.dll 70 | E:\agui\mycode\Utl\Util(20160708)\Util.Database\bin\Debug\Util.Database.pdb 71 | E:\agui\mycode\Utl\Util(20160708)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 72 | E:\agui\mycode\Utl\Util(20160708)\Util.Database\obj\Debug\Util.Database.dll 73 | E:\agui\mycode\Utl\Util(20160708)\Util.Database\obj\Debug\Util.Database.pdb 74 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\bin\Debug\Util.Database.dll 75 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\bin\Debug\Util.Database.pdb 76 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\obj\Debug\ResolveAssemblyReference.cache 77 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\obj\Debug\Util.Database.dll 78 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\obj\Debug\Util.Database.pdb 79 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database\bin\Debug\Util.Database.xml 80 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\bin\Debug\Util.Database.xml 81 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\bin\Debug\Util.Database.dll 82 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\bin\Debug\Util.Database.pdb 83 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\obj\Debug\Util.Database.dll 84 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\obj\Debug\Util.Database.pdb 85 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 86 | D:\agui\program\csharp\Util(20161211)\Util.Database\bin\Debug\Util.Database.xml 87 | D:\agui\program\csharp\Util(20161211)\Util.Database\bin\Debug\Util.Database.dll 88 | D:\agui\program\csharp\Util(20161211)\Util.Database\bin\Debug\Util.Database.pdb 89 | D:\agui\program\csharp\Util(20161211)\Util.Database\obj\Debug\Util.Database.dll 90 | D:\agui\program\csharp\Util(20161211)\Util.Database\obj\Debug\Util.Database.pdb 91 | D:\agui\program\csharp\Util(20170113)\Util.Database\bin\Debug\Util.Database.xml 92 | D:\agui\program\csharp\Util(20170113)\Util.Database\bin\Debug\Util.Database.dll 93 | D:\agui\program\csharp\Util(20170113)\Util.Database\bin\Debug\Util.Database.pdb 94 | D:\agui\program\csharp\Util(20170113)\Util.Database\obj\Debug\Util.Database.dll 95 | D:\agui\program\csharp\Util(20170113)\Util.Database\obj\Debug\Util.Database.pdb 96 | D:\agui\program\csharp\Util(20170418)\Util.Database\bin\Debug\Util.Database.xml 97 | D:\agui\program\csharp\Util(20170418)\Util.Database\bin\Debug\Util.Database.dll 98 | D:\agui\program\csharp\Util(20170418)\Util.Database\bin\Debug\Util.Database.pdb 99 | D:\agui\program\csharp\Util(20170418)\Util.Database\obj\Debug\Util.Database.dll 100 | D:\agui\program\csharp\Util(20170418)\Util.Database\obj\Debug\Util.Database.pdb 101 | D:\agui\work\tmp\Util\Util.Database\bin\Debug\Util.Database.xml 102 | D:\agui\work\tmp\Util\Util.Database\bin\Debug\Util.Database.dll 103 | D:\agui\work\tmp\Util\Util.Database\bin\Debug\Util.Database.pdb 104 | D:\agui\work\tmp\Util\Util.Database\obj\Debug\Util.Database.dll 105 | D:\agui\work\tmp\Util\Util.Database\obj\Debug\Util.Database.pdb 106 | D:\agui\work\tmp\Util20170509\Util.Database\bin\Debug\Util.Database.xml 107 | D:\agui\work\tmp\Util20170509\Util.Database\bin\Debug\Util.Database.dll 108 | D:\agui\work\tmp\Util20170509\Util.Database\bin\Debug\Util.Database.pdb 109 | D:\agui\work\tmp\Util20170509\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 110 | D:\agui\work\tmp\Util20170509\Util.Database\obj\Debug\Util.Database.dll 111 | D:\agui\work\tmp\Util20170509\Util.Database\obj\Debug\Util.Database.pdb 112 | D:\agui\work\tmp\Util\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 113 | D:\agui\program\csharp\Util(20170601)\Util.Database\bin\Debug\Util.Database.xml 114 | D:\agui\program\csharp\Util(20170601)\Util.Database\bin\Debug\Util.Database.dll 115 | D:\agui\program\csharp\Util(20170601)\Util.Database\bin\Debug\Util.Database.pdb 116 | D:\agui\program\csharp\Util(20170601)\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 117 | D:\agui\program\csharp\Util(20170601)\Util.Database\obj\Debug\Util.Database.dll 118 | D:\agui\program\csharp\Util(20170601)\Util.Database\obj\Debug\Util.Database.pdb 119 | D:\agui\program\csharp\Util(20170612)\Util.Database\bin\Debug\Util.Database.xml 120 | D:\agui\program\csharp\Util(20170612)\Util.Database\bin\Debug\Util.Database.dll 121 | D:\agui\program\csharp\Util(20170612)\Util.Database\bin\Debug\Util.Database.pdb 122 | D:\agui\program\csharp\Util(20170612)\Util.Database\obj\Debug\Util.Database.dll 123 | D:\agui\program\csharp\Util(20170612)\Util.Database\obj\Debug\Util.Database.pdb 124 | D:\agui\program\csharp\Util(20170708)\Util.Database\bin\Debug\Util.Database.xml 125 | D:\agui\program\csharp\Util(20170708)\Util.Database\bin\Debug\Util.Database.dll 126 | D:\agui\program\csharp\Util(20170708)\Util.Database\bin\Debug\Util.Database.pdb 127 | D:\agui\program\csharp\Util(20170708)\Util.Database\obj\Debug\Util.Database.dll 128 | D:\agui\program\csharp\Util(20170708)\Util.Database\obj\Debug\Util.Database.pdb 129 | D:\agui\test\Library_Util_20171212\Util.Database\bin\Debug\Util.Database.xml 130 | D:\agui\test\Library_Util_20171212\Util.Database\bin\Debug\Util.Database.dll 131 | D:\agui\test\Library_Util_20171212\Util.Database\bin\Debug\Util.Database.pdb 132 | D:\agui\test\Library_Util_20171212\Util.Database\obj\Debug\Util.Database.dll 133 | D:\agui\test\Library_Util_20171212\Util.Database\obj\Debug\Util.Database.pdb 134 | D:\agui\test\Library_Util_20171212\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 135 | E:\work\csharp\test\Util(20180313)\Util.Database\bin\Debug\Util.Database.xml 136 | E:\work\csharp\test\Util(20180313)\Util.Database\bin\Debug\Util.Database.dll 137 | E:\work\csharp\test\Util(20180313)\Util.Database\bin\Debug\Util.Database.pdb 138 | E:\work\csharp\test\Util(20180313)\Util.Database\obj\Debug\Util.Database.dll 139 | E:\work\csharp\test\Util(20180313)\Util.Database\obj\Debug\Util.Database.pdb 140 | D:\agui\program\csharp\Util_VersionFull\Util.Database\bin\Debug\Util.Database.xml 141 | D:\agui\program\csharp\Util_VersionFull\Util.Database\bin\Debug\Util.Database.dll 142 | D:\agui\program\csharp\Util_VersionFull\Util.Database\bin\Debug\Util.Database.pdb 143 | D:\agui\program\csharp\Util_VersionFull\Util.Database\obj\Debug\Util.Database.dll 144 | D:\agui\program\csharp\Util_VersionFull\Util.Database\obj\Debug\Util.Database.pdb 145 | E:\work\csharp\protest\Util(20181028)\Util.Database\bin\Debug\Util.Database.xml 146 | E:\work\csharp\protest\Util(20181028)\Util.Database\bin\Debug\Util.Database.dll 147 | E:\work\csharp\protest\Util(20181028)\Util.Database\bin\Debug\Util.Database.pdb 148 | E:\work\csharp\protest\Util(20181028)\Util.Database\obj\Debug\Util.Database.dll 149 | E:\work\csharp\protest\Util(20181028)\Util.Database\obj\Debug\Util.Database.pdb 150 | E:\work\temp\Util(20181219_2)\Util.Database\bin\Debug\Util.Database.xml 151 | E:\work\temp\Util(20181219_2)\Util.Database\bin\Debug\Util.Database.dll 152 | E:\work\temp\Util(20181219_2)\Util.Database\bin\Debug\Util.Database.pdb 153 | E:\work\temp\Util(20181219_2)\Util.Database\obj\Debug\Util.Database.dll 154 | E:\work\temp\Util(20181219_2)\Util.Database\obj\Debug\Util.Database.pdb 155 | E:\work\temp\Util(20181219_2)\Util.Database\obj\Debug\Util.Database.csprojResolveAssemblyReference.cache 156 | D:\agui\program\csharp\Util.Basics\Util.Database\bin\Debug\Util.Database.xml 157 | D:\agui\program\csharp\Util.Basics\Util.Database\bin\Debug\Util.Database.dll 158 | D:\agui\program\csharp\Util.Basics\Util.Database\bin\Debug\Util.Database.pdb 159 | D:\agui\program\csharp\Util.Basics\Util.Database\obj\Debug\Util.Database.dll 160 | D:\agui\program\csharp\Util.Basics\Util.Database\obj\Debug\Util.Database.pdb 161 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Release/EtermPid.Database.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\bin\Release\EtermPid.Database.dll 2 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\bin\Release\EtermPid.Database.pdb 3 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Release\EtermPid.Database.dll 4 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Release\EtermPid.Database.pdb 5 | D:\agui\work\my_eterm\EtermPidManager\EtermPid.Database\obj\Release\EtermPid.Database.csprojResolveAssemblyReference.cache 6 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Release/EtermPid.Database.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Release/EtermPid.Database.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Release/EtermPid.Database.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Release/EtermPid.Database.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Database/obj/Release/EtermPid.Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Database/obj/Release/EtermPid.Database.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/Attributes.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/BaseMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/BaseMapper.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/DbFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/DbFieldInfo.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/EntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/EntityBuilder.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/LGPL-LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/MapingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/MapingHelper.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/Models.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/SqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/SqlHelper.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/SqlLmdResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/SqlLmdResolver.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/Types.cs -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Util.EntityMapping.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {58189D80-5B3E-464C-8840-527206D278BF} 8 | Library 9 | Properties 10 | Util.EntityMapping 11 | Util.EntityMapping 12 | v4.5 13 | 512 14 | 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | bin\Debug\Util.EntityMapping.xml 25 | false 26 | 27 | 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | false 35 | 36 | 37 | 38 | False 39 | ..\Library\Newtonsoft.Json.dll 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | {d45c84fa-a2f1-4b61-8df3-bee9fb8491aa} 64 | Util.Database 65 | 66 | 67 | 68 | 69 | copy "$(TargetDir)Util.EntityMapping.dll" "$(TargetDir)..\..\..\Library\" 70 | copy "$(TargetDir)Util.EntityMapping.pdb" "$(TargetDir)..\..\..\Library\" 71 | copy "$(TargetDir)Util.EntityMapping.xml" "$(TargetDir)..\..\..\Library\" 72 | 73 | 80 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/Util.EntityMapping.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\test\last\Util\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.csprojResolveAssemblyReference.cache 2 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 3 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 4 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Common.dll 5 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Database.dll 6 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 7 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 8 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Common.pdb 9 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Common.xml 10 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Database.pdb 11 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\Util.Database.xml 12 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 13 | D:\agui\test\last\Util\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 14 | D:\agui\test\last\Util\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 15 | D:\agui\test\last\Util\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 16 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 17 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 18 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Common.dll 19 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Database.dll 20 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 21 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 22 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 23 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Common.xml 24 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 25 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\Util.Database.xml 26 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 27 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 28 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.csprojResolveAssemblyReference.cache 29 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 30 | D:\agui\test\last\Util(20160413_2)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 31 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 32 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 33 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Common.dll 34 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Database.dll 35 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 36 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 37 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 38 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Common.xml 39 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 40 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\Util.Database.xml 41 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 42 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 43 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 44 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 45 | E:\agui\mycode\Utl\Util(20160413_3)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 46 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 47 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 48 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Common.dll 49 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Database.dll 50 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 51 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 52 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 53 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Common.xml 54 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 55 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\Util.Database.xml 56 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 57 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 58 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 59 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 60 | E:\agui\mycode\Utl\Util(20160601)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 61 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 62 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 63 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Common.dll 64 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Database.dll 65 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 66 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 67 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 68 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Common.xml 69 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 70 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\Util.Database.xml 71 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 72 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 73 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 74 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 75 | E:\agui\mycode\Utl\Util(20160626)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 76 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 77 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 78 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Common.dll 79 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Database.dll 80 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 81 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 82 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 83 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Common.xml 84 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 85 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\Util.Database.xml 86 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 87 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 88 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 89 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 90 | E:\agui\mycode\Utl\Util(20160701)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 91 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 92 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 93 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Common.dll 94 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Database.dll 95 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 96 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 97 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 98 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Common.xml 99 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 100 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\Util.Database.xml 101 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 102 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 103 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 104 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 105 | E:\agui\mycode\Utl\Util(20160708)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 106 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.dll 107 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Database.Mapping.pdb 108 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Common.dll 109 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Database.dll 110 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 111 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 112 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Common.pdb 113 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Common.xml 114 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Database.pdb 115 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\Util.Database.xml 116 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 117 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 118 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\obj\Debug\ResolveAssemblyReference.cache 119 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.dll 120 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Database.Mapping\obj\Debug\Util.Database.Mapping.pdb 121 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Database.Mapping.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.EntityMapping.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.EntityMapping.xml 2 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.EntityMapping.dll 3 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.EntityMapping.pdb 4 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 5 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.dll 6 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.pdb 7 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.xml 8 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 9 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.EntityMapping.csprojResolveAssemblyReference.cache 10 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.EntityMapping.dll 11 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.EntityMapping.pdb 12 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 2 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Mapping.dll 3 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Mapping.pdb 4 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Common.dll 5 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Database.dll 6 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 7 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.dll 8 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Common.pdb 9 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Common.xml 10 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Database.pdb 11 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\Util.Database.xml 12 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 13 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\bin\Debug\HtmlAgilityPack.xml 14 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\obj\Debug\Util.Mapping.dll 15 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Database.Mapping\obj\Debug\Util.Mapping.pdb 16 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Mapping.dll 17 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Mapping.pdb 18 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Common.dll 19 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Database.dll 20 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 21 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 22 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Common.pdb 23 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Common.xml 24 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Database.pdb 25 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\Util.Database.xml 26 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 27 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 28 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 29 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\obj\Debug\Util.Mapping.dll 30 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Mapping\obj\Debug\Util.Mapping.pdb 31 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Mapping.dll 32 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Mapping.pdb 33 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Common.dll 34 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Database.dll 35 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 36 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 37 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Common.pdb 38 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Common.xml 39 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Database.pdb 40 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\Util.Database.xml 41 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 42 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 43 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 44 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\obj\Debug\Util.Mapping.dll 45 | D:\agui\program\csharp\Util(20161211)\Util.Mapping\obj\Debug\Util.Mapping.pdb 46 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Mapping.dll 47 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Mapping.pdb 48 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Common.dll 49 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Database.dll 50 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 51 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 52 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Common.pdb 53 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Common.xml 54 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Database.pdb 55 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\Util.Database.xml 56 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 57 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 58 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 59 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\obj\Debug\Util.Mapping.dll 60 | D:\agui\program\csharp\Util(20170113)\Util.Mapping\obj\Debug\Util.Mapping.pdb 61 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Mapping.dll 62 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Mapping.pdb 63 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Common.dll 64 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Database.dll 65 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 66 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 67 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Common.pdb 68 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Common.xml 69 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Database.pdb 70 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\Util.Database.xml 71 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 72 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 73 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 74 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\obj\Debug\Util.Mapping.dll 75 | D:\agui\program\csharp\Util(20170418)\Util.Mapping\obj\Debug\Util.Mapping.pdb 76 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Mapping.dll 77 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Mapping.pdb 78 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Common.dll 79 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Database.dll 80 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 81 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 82 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Common.pdb 83 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Common.xml 84 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Database.pdb 85 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\Util.Database.xml 86 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 87 | D:\agui\work\tmp\Util\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 88 | D:\agui\work\tmp\Util\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 89 | D:\agui\work\tmp\Util\Util.Mapping\obj\Debug\Util.Mapping.dll 90 | D:\agui\work\tmp\Util\Util.Mapping\obj\Debug\Util.Mapping.pdb 91 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Mapping.dll 92 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Mapping.pdb 93 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Common.dll 94 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Database.dll 95 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 96 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 97 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Common.pdb 98 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Common.xml 99 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Database.pdb 100 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\Util.Database.xml 101 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 102 | D:\agui\work\tmp\Util20170509\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 103 | D:\agui\work\tmp\Util20170509\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 104 | D:\agui\work\tmp\Util20170509\Util.Mapping\obj\Debug\Util.Mapping.dll 105 | D:\agui\work\tmp\Util20170509\Util.Mapping\obj\Debug\Util.Mapping.pdb 106 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Mapping.dll 107 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Mapping.pdb 108 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Common.dll 109 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Database.dll 110 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 111 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 112 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Common.pdb 113 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Common.xml 114 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Database.pdb 115 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\Util.Database.xml 116 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 117 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 118 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 119 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\obj\Debug\Util.Mapping.dll 120 | D:\agui\program\csharp\Util(20170601)\Util.Mapping\obj\Debug\Util.Mapping.pdb 121 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Mapping.dll 122 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Mapping.pdb 123 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Common.dll 124 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Database.dll 125 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 126 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 127 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Common.pdb 128 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Common.xml 129 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Database.pdb 130 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\Util.Database.xml 131 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 132 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 133 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 134 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\obj\Debug\Util.Mapping.dll 135 | D:\agui\program\csharp\Util(20170612)\Util.Mapping\obj\Debug\Util.Mapping.pdb 136 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Mapping.dll 137 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Mapping.pdb 138 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Common.dll 139 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Database.dll 140 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 141 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 142 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Common.pdb 143 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Common.xml 144 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Database.pdb 145 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Database.xml 146 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 147 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 148 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 149 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\obj\Debug\Util.Mapping.dll 150 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\obj\Debug\Util.Mapping.pdb 151 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Util.Mapping.XML 152 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 153 | D:\agui\program\csharp\Util(20170708)\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 154 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Mapping.XML 155 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Mapping.dll 156 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Mapping.pdb 157 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 158 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Common.dll 159 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Database.dll 160 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 161 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 162 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Common.pdb 163 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Common.xml 164 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Database.pdb 165 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Util.Database.xml 166 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 167 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 168 | D:\agui\test\Library_Util_20171212\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 169 | D:\agui\test\Library_Util_20171212\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 170 | D:\agui\test\Library_Util_20171212\Util.Mapping\obj\Debug\Util.Mapping.dll 171 | D:\agui\test\Library_Util_20171212\Util.Mapping\obj\Debug\Util.Mapping.pdb 172 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Mapping.XML 173 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Mapping.dll 174 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Mapping.pdb 175 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 176 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Common.dll 177 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Database.dll 178 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.dll 179 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\HtmlAgilityPack.dll 180 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Common.pdb 181 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Common.xml 182 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Database.pdb 183 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Util.Database.xml 184 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 185 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\ICSharpCode.SharpZipLib.xml 186 | E:\work\csharp\test\Util(20180313)\Util.Mapping\bin\Debug\HtmlAgilityPack.xml 187 | E:\work\csharp\test\Util(20180313)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 188 | E:\work\csharp\test\Util(20180313)\Util.Mapping\obj\Debug\Util.Mapping.dll 189 | E:\work\csharp\test\Util(20180313)\Util.Mapping\obj\Debug\Util.Mapping.pdb 190 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Mapping.XML 191 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Mapping.dll 192 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Mapping.pdb 193 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 194 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Common.dll 195 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Database.dll 196 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Common.pdb 197 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Common.xml 198 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Database.pdb 199 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Util.Database.xml 200 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 201 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 202 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\obj\Debug\Util.Mapping.dll 203 | D:\agui\program\csharp\Util_VersionFull\Util.Mapping\obj\Debug\Util.Mapping.pdb 204 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Mapping.XML 205 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Mapping.dll 206 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Mapping.pdb 207 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 208 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Common.dll 209 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Database.dll 210 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Common.pdb 211 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Common.xml 212 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Database.pdb 213 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Util.Database.xml 214 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 215 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 216 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\obj\Debug\Util.Mapping.dll 217 | E:\work\csharp\protest\Util(20181028)\Util.Mapping\obj\Debug\Util.Mapping.pdb 218 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Mapping.XML 219 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Mapping.dll 220 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Mapping.pdb 221 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 222 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Common.dll 223 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Database.dll 224 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Common.pdb 225 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Common.xml 226 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Database.pdb 227 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Util.Database.xml 228 | E:\work\temp\Util(20181219_2)\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 229 | E:\work\temp\Util(20181219_2)\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 230 | E:\work\temp\Util(20181219_2)\Util.Mapping\obj\Debug\Util.Mapping.dll 231 | E:\work\temp\Util(20181219_2)\Util.Mapping\obj\Debug\Util.Mapping.pdb 232 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Mapping.XML 233 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Mapping.dll 234 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Mapping.pdb 235 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.dll 236 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.pdb 237 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Util.Database.xml 238 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.Mapping.csprojResolveAssemblyReference.cache 239 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.Mapping.dll 240 | D:\agui\program\csharp\Util.Basics\Util.Mapping\obj\Debug\Util.Mapping.pdb 241 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Newtonsoft.Json.dll 242 | D:\agui\program\csharp\Util.Basics\Util.Mapping\bin\Debug\Newtonsoft.Json.xml 243 | -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.dll -------------------------------------------------------------------------------- /Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.Mapping/obj/Debug/Util.Mapping.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Util.UnitTest 3 | { 4 | 5 | class Program 6 | { 7 | [STAThread] 8 | static void Main(string[] args) 9 | { 10 | Console.ReadLine(); 11 | } 12 | } 13 | 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | [assembly: AssemblyTitle("Util.UnitTest")] 6 | [assembly: AssemblyDescription("")] 7 | [assembly: AssemblyConfiguration("")] 8 | [assembly: AssemblyCompany("Microsoft")] 9 | [assembly: AssemblyProduct("Util.UnitTest")] 10 | [assembly: AssemblyCopyright("Copyright ? Microsoft 2016")] 11 | [assembly: AssemblyTrademark("")] 12 | [assembly: AssemblyCulture("")] 13 | 14 | [assembly: ComVisible(false)] 15 | 16 | [assembly: Guid("5401269a-8a1c-4e6f-9e8b-9b4bc3d69aed")] 17 | 18 | [assembly: AssemblyVersion("1.0.0.0")] 19 | [assembly: AssemblyFileVersion("1.0.0.0")] 20 | 21 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/TestDatabase_Unit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Collections.Concurrent; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Data; 7 | using System.Data.Common; 8 | using Microsoft.VisualStudio.TestTools.UnitTesting; 9 | 10 | using Util.Database; 11 | using Util.EntityMapping; 12 | using System.Linq.Expressions; 13 | namespace Util.UnitTest 14 | { 15 | [TestClass] 16 | public class TestDatabase_Unit 17 | { 18 | 19 | 20 | #region lmd生成sql条件测试 21 | 22 | 23 | [TestMethod] 24 | public void TestSqlLmdResolve() 25 | { 26 | //ORM数据映射 27 | DbConfig.UseDefaultConfig(new TModelDbConfig(GetDbPath())); 28 | 29 | 30 | var where = GetSqlWhere(m => m.enabled && m.name == "test"); 31 | Console.WriteLine("LmdSql1:" + where); 32 | where = GetSqlWhere(m => !m.enabled && m.name.Contains("test") && m.enabled); 33 | Console.WriteLine("LmdSql2:" + where); 34 | 35 | //条件优先级 36 | where = GetSqlWhere(m => (!m.enabled && m.name.Contains("test") && m.enabled) || m.name.StartsWith("test")); 37 | Console.WriteLine("LmdSql3:" + where); 38 | where = GetSqlWhere(m => (m.enabled && m.name.Contains("test") && m.enabled) || (m.name.StartsWith("test") && !m.isused && m.isused)); 39 | 40 | //其他判断 41 | Console.WriteLine("LmdSql4:" + where); 42 | where = GetSqlWhere(m => !m.enabled && m.name.Contains("test") && !m.enabled); 43 | Console.WriteLine("LmdSql5:" + where); 44 | where = GetSqlWhere(m => !m.enabled && m.name.Contains("test") && m.enabled == true); 45 | Console.WriteLine("LmdSql6:" + where); 46 | where = GetSqlWhere(m => m.name.Contains("test") && m.enabled || m.name.StartsWith("test")); 47 | Console.WriteLine("LmdSql7:" + where); 48 | where = GetSqlWhere(m => m.enabled); 49 | Console.WriteLine("LmdSql8:" + where); 50 | where = GetSqlWhere(m => !m.enabled); 51 | Console.WriteLine("LmdSql9:" + where); 52 | where = GetSqlWhere(m => m.name.StartsWith("test")); 53 | Console.WriteLine("LmdSql10:" + where); 54 | where = GetSqlWhere(m => !m.name.StartsWith("test")); 55 | Console.WriteLine("LmdSql11:" + where); 56 | where = GetSqlWhere(m => m.name.StartsWith("test") || m.name.Contains("test")); 57 | Console.WriteLine("LmdSql12:" + where); 58 | 59 | //条件判断是否前包含,判断常量相等,多层判断 60 | var extend = new cms_category_extend(); 61 | extend.mytest2 = new cms_category_extend(); 62 | extend.mytest2.mytest1 = new cms_category { name = "hehhe" }; 63 | where = GetSqlWhere(m => m.name.StartsWith("test") || m.name == cms_category.TestConst || 64 | m.name == extend.mytest2.mytest1.name); 65 | Console.WriteLine("LmdSql13:" + where); 66 | 67 | //判断列表包含 68 | var list = new List { "a", "b", "c" }; 69 | where = GetSqlWhere(m => list.Contains(m.name)); 70 | Console.WriteLine("LmdSql14:" + where); 71 | 72 | object testName = "test"; 73 | where = GetSqlWhere(m => m.enabled && m.name == (string)testName); 74 | Console.WriteLine("LmdSql15:" + where); 75 | object testParent_id = 1; 76 | //枚举判断 77 | where = GetSqlWhere(m => (m.id == (int)testParent_id) || (m.enabled && m.parent_id == Status.Success)); 78 | Console.WriteLine("LmdSql16:" + where); 79 | 80 | //静态字段判断 81 | where = GetSqlWhere(m => m.name == cms_category.TestStatic); 82 | Console.WriteLine("LmdSql17:" + where); 83 | } 84 | 85 | private string GetSqlWhere(Expression> expression) 86 | { 87 | SqlLmdResolver exp = new SqlLmdResolver(); 88 | exp.ResolveExpression(expression); 89 | return exp.SqlWhere + "\r\n" + string.Join(",", exp.Parameters.Select(m => m.ParameterName + ":" + m.Value.ToString())); 90 | } 91 | 92 | 93 | #endregion 94 | 95 | #region access orm测试 96 | 97 | private string GetDbPath() 98 | { 99 | var path = AppDomain.CurrentDomain.BaseDirectory; 100 | if (path.EndsWith("debug", StringComparison.OrdinalIgnoreCase)) 101 | { 102 | path = path.Substring(0, path.LastIndexOf('\\')); 103 | path = path.Substring(0, path.LastIndexOf('\\')); 104 | path = path.Substring(0, path.LastIndexOf('\\')); 105 | } 106 | path = path.TrimEnd('\\') + @"\DataBase"; 107 | return path; 108 | } 109 | [TestMethod] 110 | public void TestDbConfig() 111 | { 112 | //初始化配置 113 | DbConfig.UseDefaultConfig(new TModelDbConfig(GetDbPath())); 114 | 115 | //T4模版获取数据库信息 116 | List list = DbFactory.GetShemaTables(); 117 | Console.WriteLine(list.Count.ToString()); 118 | } 119 | 120 | 121 | [TestMethod] 122 | public void TestAccessOrm() 123 | { 124 | 125 | //ORM数据映射 126 | DbConfig.UseDefaultConfig(new TModelDbConfig(GetDbPath())); 127 | Console.WriteLine("Start loadding..."); 128 | Console.WriteLine(new cms_category().Query(m => m.name == "城市").ToCount()); 129 | var cat = new cms_category().Query(m => m.name == "城市").SortAsc(m => m.name).ToModel(); 130 | Console.WriteLine(cat.name); 131 | 132 | //设置只更新部分 133 | //cat.SetPartHandled(); 134 | //cat.description = "test"; 135 | //cat.Update(m=>m.id == 1); 136 | 137 | Console.WriteLine(cat.ToValue(m => m.name)); 138 | Console.WriteLine(new cms_category().Query(m => m.name == "城市").ToList()[0].name); 139 | Console.WriteLine(new cms_category().Query(m => m.name == "城市" && m.id > 0 && m.name == "" || (m.id == 0 || m.name == "")).ToCount()); 140 | //指定条件规则查询 141 | Console.WriteLine(new cms_category().Query(m => (m.name == "城市" && (m.id > 0 || m.name == "")) || (m.id == 0 || m.name == "")).ToCount()); 142 | 143 | var cityList = new List { "城市", "b", "c" }; 144 | var layer = new LayerModel { List = cityList }; 145 | Console.WriteLine(new cms_category().Query(m => m.name == "城市" || cityList.Contains(m.name) || m.parent_id == Status.Success).ToCount()); 146 | Console.WriteLine(new cms_category().Query(m => m.name == "城市" || layer.List.Contains(m.name)).ToCount()); 147 | 148 | 149 | //获取全部 150 | var datsList = new cms_category().Query().ToList(); 151 | Console.WriteLine(datsList.Count); 152 | //获取N条 153 | datsList = new cms_category().Query().ToList(6); 154 | Console.WriteLine(datsList.Count); 155 | //获取部分 156 | var partList = new cms_category().Query().ToPartList(6, "id", "name").Select(m => new cms_category 157 | { 158 | id = int.Parse(m[0]), 159 | name = m[1] 160 | }).ToList(); 161 | Console.WriteLine(partList.Count); 162 | //分页查询 163 | var mapper = new cms_category().Query(); 164 | var dataCount = mapper.ToCount(); 165 | datsList = mapper.ToList(20, 1, dataCount); 166 | Console.WriteLine(datsList.Count); 167 | //条件拼接查询 168 | mapper.And(m => m.name == "test") 169 | .And(m => m.id > 0) 170 | .Or(m => m.parent_id > 0); 171 | mapper.Or(m => m.parent_id > 0); 172 | 173 | 174 | 175 | var channels = new cms_channel().Query().ToList(); 176 | Console.WriteLine(channels.Count); 177 | var grade = new ucl_grade { id = 5 }; 178 | grade.grade_name = "新手1"; 179 | var dal = new UclGradeDataAccess(grade); 180 | //保持数据库连接 181 | using (var db = new DbBuilder(new TModelDbConfig(GetDbPath())).KeepConnect()) 182 | { 183 | //使用数据库db操作并跟踪实体修改状态 184 | dal.UseDatabase(db).SetPartHandled(); 185 | grade.grade = 8; 186 | grade.grade_name = "新手"; 187 | dal.Update(); 188 | } 189 | //db销毁后重连数据库 190 | Console.WriteLine(dal.ToValue(m => m.grade_name)); 191 | 192 | 193 | //使用事务(在事务中处理) 194 | using (var db = new DbBuilder(new TModelDbConfig(GetDbPath())).KeepConnect()) 195 | { 196 | try 197 | { 198 | db.BeginTransaction(); 199 | //TODO:something 200 | //使用数据库db操作并跟踪实体修改状态 201 | dal.UseDatabase(db).SetPartHandled(); 202 | grade.grade = 8; 203 | grade.grade_name = "新手"; 204 | dal.Update(); 205 | db.CommitTransaction(); 206 | } 207 | catch (Exception ex) 208 | { 209 | db.RollbackTransaction(); 210 | } 211 | } 212 | 213 | //使用事务(批处理事务) 214 | var parList = new List(); 215 | //添加到批处理事务中,如果执行失败则回滚事务 216 | parList.Add(dal.GetUpdateDbParamInfo().UseVerifyExecResult()); 217 | //TODO:添加其他操作到parList 218 | var execCount = new DbBuilder(new TModelDbConfig(GetDbPath())).ExecuteSqlTran(parList); 219 | Console.WriteLine(execCount); 220 | } 221 | 222 | 223 | [TestMethod] 224 | public void TestMappingField() 225 | { 226 | var cat = new cms_category(); 227 | var watch = System.Diagnostics.Stopwatch.StartNew(); 228 | var eachCount = 100000; 229 | for (var i = 0; i < eachCount; i++) 230 | { 231 | var field = new cms_category().ExpField(f => f.name); 232 | } 233 | watch.Stop(); 234 | Console.WriteLine("Linq反射取" + eachCount + "次字段毫秒数:" + watch.ElapsedMilliseconds); 235 | } 236 | 237 | 238 | 239 | //=============================================================================================== 240 | //access 测试配置类 241 | //=============================================================================================== 242 | public class TModelDbConfig : DbConfig 243 | { 244 | public static void DBWriteLogInfo(string info, string title, string logpath, string encoding) 245 | { 246 | Console.WriteLine("dblog:" + info); 247 | } 248 | public TModelDbConfig(string solutionDir) : base("System.Data.OleDb", 249 | @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + solutionDir + @"\PlugNT_CMS.mdb;User ID=;Password=;", 250 | DBWriteLogInfo) 251 | { } 252 | 253 | } 254 | 255 | 256 | [Table("cms_channel")] 257 | public partial class cms_channel : BaseMapper 258 | { 259 | public int id { get; set; } 260 | public string no { get; set; } 261 | public string title { get; set; } 262 | } 263 | public class LayerModel 264 | { 265 | public List List { get; set; } 266 | } 267 | public partial class cms_category : BaseMapper 268 | { 269 | 270 | public static string TestStatic = "TestStatic"; 271 | public const string TestConst = "TestConst"; 272 | 273 | public int id { get; set; } 274 | public string name { get; set; } 275 | //public int parent_id { get; set; } 276 | public Status parent_id { get; set; } 277 | 278 | [Obsolete("test")] 279 | public bool enabled { get; set; } 280 | [Obsolete("test")] 281 | public bool isused { get; set; } 282 | 283 | 284 | public override string TableName 285 | { 286 | get { return "cms_category"; } 287 | } 288 | protected override cms_category ConvertEntity(IDataReader reader) 289 | { 290 | return new cms_category 291 | { 292 | id = int.Parse(reader["id"].ToString()), 293 | name = reader["name"].ToString(), 294 | parent_id = (Status)int.Parse(reader["parent_id"].ToString()), 295 | }; 296 | } 297 | protected override List ConvertFields(cms_category model) 298 | { 299 | return new List 300 | { 301 | new DbFieldInfo { Name = "id", Value = model.id , IsIdentity =true }, 302 | new DbFieldInfo { Name = "name", Value = model.name }, 303 | new DbFieldInfo { Name = "parent_id", Value = model.parent_id }, 304 | }; 305 | } 306 | } 307 | 308 | public class cms_category_extend : cms_category 309 | { 310 | public cms_category mytest1 { get; set; } 311 | public cms_category_extend mytest2 { get; set; } 312 | public string myname { get; set; } 313 | } 314 | public class ucl_grade 315 | { 316 | public int id { get; set; } 317 | public int grade { get; set; } 318 | public string grade_name { get; set; } 319 | } 320 | 321 | public class UclGradeDataAccess : BaseMapper 322 | { 323 | public UclGradeDataAccess(ucl_grade model = null) 324 | { 325 | ContextEntity = model; 326 | } 327 | public override string TableName 328 | { 329 | get { return "ucl_grade"; } 330 | } 331 | protected override ucl_grade ConvertEntity(IDataReader reader) 332 | { 333 | return new ucl_grade 334 | { 335 | id = int.Parse(reader["id"].ToString()), 336 | grade = int.Parse(reader["grade"].ToString()), 337 | grade_name = reader["grade_name"].ToString(), 338 | }; 339 | } 340 | protected override List ConvertFields(ucl_grade model) 341 | { 342 | return new List 343 | { 344 | new DbFieldInfo { Name = "id", Value = model.id , IsPrimaryKey =true , IsIdentity =true }, 345 | new DbFieldInfo { Name = "grade", Value = model.grade }, 346 | new DbFieldInfo { Name = "grade_name", Value = model.grade_name }, 347 | }; 348 | } 349 | } 350 | public enum Status 351 | { 352 | Success 353 | } 354 | 355 | 356 | 357 | #endregion 358 | 359 | 360 | } 361 | } 362 | 363 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/Util.UnitTest.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | {45FB4BE3-2341-4087-97AC-64F42EF3AC77} 7 | Exe 8 | Properties 9 | Util.UnitTest 10 | Util.UnitTest 11 | v4.5 12 | 512 13 | {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 14 | 10.0 15 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) 16 | $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages 17 | False 18 | UnitTest 19 | 20 | 21 | 22 | true 23 | full 24 | false 25 | bin\Debug\ 26 | DEBUG;TRACE 27 | prompt 28 | 4 29 | AnyCPU 30 | false 31 | 32 | 33 | pdbonly 34 | true 35 | bin\Release\ 36 | TRACE 37 | prompt 38 | 4 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 3.5 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | Designer 76 | 77 | 78 | 79 | 80 | {d45c84fa-a2f1-4b61-8df3-bee9fb8491aa} 81 | Util.Database 82 | 83 | 84 | {58189d80-5b3e-464c-8840-527206d278bf} 85 | Util.EntityMapping 86 | 87 | 88 | 89 | 90 | 91 | 92 | False 93 | 94 | 95 | False 96 | 97 | 98 | False 99 | 100 | 101 | False 102 | 103 | 104 | 105 | 106 | 107 | 108 | 115 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/Util.UnitTest.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/bin/Debug/Util.UnitTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/bin/Debug/Util.UnitTest.vshost.exe -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/bin/Debug/Util.UnitTest.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/bin/Debug/Util.UnitTest.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Test.exe.config 2 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Test.exe 3 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Test.pdb 4 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.dll 5 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.dll 6 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.TestManager.dll 7 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.WebServer.dll 8 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.dll 9 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.Mapping.dll 10 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.dll 11 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 12 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.pdb 13 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.xml 14 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.pdb 15 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.TestManager.pdb 16 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.WebServer.pdb 17 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.Mapping.pdb 18 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.pdb 19 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.xml 20 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.xml 21 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 22 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\ResolveAssemblyReference.cache 23 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\Util.Test.exe 24 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\Util.Test.pdb 25 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Test.exe.config 26 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\obj\Debug\Util.Test.exe 27 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\obj\Debug\Util.Test.pdb 28 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Test.exe 29 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Test.pdb 30 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Common.dll 31 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 32 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.TestManager.dll 33 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.WebServer.dll 34 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Database.dll 35 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Database.Mapping.dll 36 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 37 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\HtmlAgilityPack.dll 38 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Common.pdb 39 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Common.xml 40 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 41 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 42 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 43 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Database.Mapping.pdb 44 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Database.pdb 45 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\Util.Database.xml 46 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 47 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\bin\Debug\HtmlAgilityPack.xml 48 | E:\agui\mycode\Utl\Util(20160713_2)\Util.Test\obj\Debug\ResolveAssemblyReference.cache 49 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Test.exe.config 50 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Test.exe 51 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Test.pdb 52 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Common.dll 53 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 54 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.TestManager.dll 55 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.WebServer.dll 56 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Database.dll 57 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Database.Mapping.dll 58 | D:\agui\test\last\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 59 | D:\agui\test\last\Util\Util.Test\bin\Debug\HtmlAgilityPack.dll 60 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Common.pdb 61 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Common.xml 62 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 63 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.TestManager.pdb 64 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Components.WebServer.pdb 65 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Database.Mapping.pdb 66 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Database.pdb 67 | D:\agui\test\last\Util\Util.Test\bin\Debug\Util.Database.xml 68 | D:\agui\test\last\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 69 | D:\agui\test\last\Util\Util.Test\bin\Debug\HtmlAgilityPack.xml 70 | D:\agui\test\last\Util\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 71 | D:\agui\test\last\Util\Util.Test\obj\Debug\Util.Test.exe 72 | D:\agui\test\last\Util\Util.Test\obj\Debug\Util.Test.pdb 73 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Test.exe.config 74 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\obj\Debug\Util.Test.exe 75 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\obj\Debug\Util.Test.pdb 76 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Test.exe 77 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Test.pdb 78 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\HtmlAgilityPack.dll 79 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Common.dll 80 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 81 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.TestManager.dll 82 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.WebServer.dll 83 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Database.dll 84 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Mapping.dll 85 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 86 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Common.pdb 87 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Common.xml 88 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 89 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.TestManager.pdb 90 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Components.WebServer.pdb 91 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Mapping.pdb 92 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Database.pdb 93 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\Util.Database.xml 94 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\HtmlAgilityPack.xml 95 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 96 | C:\Users\xyx-j-011\Desktop\test\Util\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 97 | C:\Users\xyx-j-011\Desktop\test\Util2\Util.Test\bin\Debug\Util.Test.exe.config 98 | C:\Users\xyx-j-011\Desktop\test\Util2\Util.Test\obj\Debug\Util.Test.exe 99 | C:\Users\xyx-j-011\Desktop\test\Util2\Util.Test\obj\Debug\Util.Test.pdb 100 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Test.exe.config 101 | D:\agui\program\csharp\Util(20161211)\Util.Test\obj\Debug\Util.Test.exe 102 | D:\agui\program\csharp\Util(20161211)\Util.Test\obj\Debug\Util.Test.pdb 103 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Test.exe 104 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Test.pdb 105 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\HtmlAgilityPack.dll 106 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Common.dll 107 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 108 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.TestManager.dll 109 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.WebServer.dll 110 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Database.dll 111 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Mapping.dll 112 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 113 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Common.pdb 114 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Common.xml 115 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 116 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 117 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 118 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Mapping.pdb 119 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Database.pdb 120 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\Util.Database.xml 121 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\HtmlAgilityPack.xml 122 | D:\agui\program\csharp\Util(20161211)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 123 | D:\agui\program\csharp\Util(20161211)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 124 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Test.exe.config 125 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Test.exe 126 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Test.pdb 127 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\HtmlAgilityPack.dll 128 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Common.dll 129 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 130 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.TestManager.dll 131 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.WcfService.dll 132 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.WebServer.dll 133 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Database.dll 134 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Mapping.dll 135 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 136 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Common.pdb 137 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Common.xml 138 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 139 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 140 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 141 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 142 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Mapping.pdb 143 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Database.pdb 144 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\Util.Database.xml 145 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\HtmlAgilityPack.xml 146 | D:\agui\program\csharp\Util(20170113)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 147 | D:\agui\program\csharp\Util(20170113)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 148 | D:\agui\program\csharp\Util(20170113)\Util.Test\obj\Debug\Util.Test.exe 149 | D:\agui\program\csharp\Util(20170113)\Util.Test\obj\Debug\Util.Test.pdb 150 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Test.exe.config 151 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Test.exe 152 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Test.pdb 153 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\HtmlAgilityPack.dll 154 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Common.dll 155 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 156 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.TestManager.dll 157 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.WcfService.dll 158 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.WebServer.dll 159 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Database.dll 160 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Mapping.dll 161 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 162 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Common.pdb 163 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Common.xml 164 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 165 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 166 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 167 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 168 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Mapping.pdb 169 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Database.pdb 170 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\Util.Database.xml 171 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\HtmlAgilityPack.xml 172 | D:\agui\program\csharp\Util(20170418)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 173 | D:\agui\program\csharp\Util(20170418)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 174 | D:\agui\program\csharp\Util(20170418)\Util.Test\obj\Debug\Util.Test.exe 175 | D:\agui\program\csharp\Util(20170418)\Util.Test\obj\Debug\Util.Test.pdb 176 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Test.exe.config 177 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Test.exe 178 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Test.pdb 179 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\HtmlAgilityPack.dll 180 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 181 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Common.dll 182 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 183 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.TestManager.dll 184 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.WcfService.dll 185 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.WebServer.dll 186 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Database.dll 187 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Mapping.dll 188 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 189 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Common.pdb 190 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Common.xml 191 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 192 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.TestManager.pdb 193 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.WcfService.pdb 194 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Components.WebServer.pdb 195 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Mapping.pdb 196 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Database.pdb 197 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\Util.Database.xml 198 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\HtmlAgilityPack.xml 199 | D:\agui\work\tmp\Util\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 200 | D:\agui\work\tmp\Util\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 201 | D:\agui\work\tmp\Util\Util.Test\obj\Debug\Util.Test.exe 202 | D:\agui\work\tmp\Util\Util.Test\obj\Debug\Util.Test.pdb 203 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Test.exe.config 204 | D:\agui\work\tmp\Util20170509\Util.Test\obj\Debug\Util.Test.exe 205 | D:\agui\work\tmp\Util20170509\Util.Test\obj\Debug\Util.Test.pdb 206 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Test.exe 207 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Test.pdb 208 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\HtmlAgilityPack.dll 209 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 210 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Common.dll 211 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 212 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.TestManager.dll 213 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.WcfService.dll 214 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.WebServer.dll 215 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Database.dll 216 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Mapping.dll 217 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 218 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Common.pdb 219 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Common.xml 220 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 221 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.TestManager.pdb 222 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.WcfService.pdb 223 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Components.WebServer.pdb 224 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Mapping.pdb 225 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Database.pdb 226 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\Util.Database.xml 227 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\HtmlAgilityPack.xml 228 | D:\agui\work\tmp\Util20170509\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 229 | D:\agui\work\tmp\Util20170509\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 230 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Test.exe.config 231 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Test.exe 232 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Test.pdb 233 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\HtmlAgilityPack.dll 234 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Common.dll 235 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 236 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.TestManager.dll 237 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.WcfService.dll 238 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.WebServer.dll 239 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Database.dll 240 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Mapping.dll 241 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 242 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Common.pdb 243 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Common.xml 244 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 245 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 246 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 247 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 248 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Mapping.pdb 249 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Database.pdb 250 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\Util.Database.xml 251 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\HtmlAgilityPack.xml 252 | D:\agui\program\csharp\Util(20170601)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 253 | D:\agui\program\csharp\Util(20170601)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 254 | D:\agui\program\csharp\Util(20170601)\Util.Test\obj\Debug\Util.Test.exe 255 | D:\agui\program\csharp\Util(20170601)\Util.Test\obj\Debug\Util.Test.pdb 256 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Test.exe.config 257 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Test.exe 258 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Test.pdb 259 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\HtmlAgilityPack.dll 260 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Common.dll 261 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 262 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.TestManager.dll 263 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.WcfService.dll 264 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.WebServer.dll 265 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Database.dll 266 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Mapping.dll 267 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 268 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Common.pdb 269 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Common.xml 270 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 271 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 272 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 273 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 274 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Mapping.pdb 275 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Database.pdb 276 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\Util.Database.xml 277 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\HtmlAgilityPack.xml 278 | D:\agui\program\csharp\Util(20170612)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 279 | D:\agui\program\csharp\Util(20170612)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 280 | D:\agui\program\csharp\Util(20170612)\Util.Test\obj\Debug\Util.Test.exe 281 | D:\agui\program\csharp\Util(20170612)\Util.Test\obj\Debug\Util.Test.pdb 282 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Test.exe.config 283 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Test.exe 284 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Test.pdb 285 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\HtmlAgilityPack.dll 286 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.dll 287 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 288 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.TestManager.dll 289 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WcfService.dll 290 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WebServer.dll 291 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.dll 292 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.dll 293 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 294 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.pdb 295 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.xml 296 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 297 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 298 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 299 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 300 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.pdb 301 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.pdb 302 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.xml 303 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\HtmlAgilityPack.xml 304 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 305 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.Test.csprojResolveAssemblyReference.cache 306 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.Test.exe 307 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.Test.pdb 308 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ImageBreak.dll 309 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FileSystem.dll 310 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FtpUtility.dll 311 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ImageBreak.pdb 312 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FileSystem.pdb 313 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FtpUtility.pdb 314 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 315 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.xml 316 | -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.exe -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlugNT/util6/43525bd9fed1b604376a50ed82a029f4d5b9831a/Util6 ORM/Util.UnitTest/obj/Debug/Util.Test.pdb -------------------------------------------------------------------------------- /Util6 ORM/Util.UnitTest/obj/Debug/Util.UnitTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 2 | D:\agui\test\last\Util\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 3 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.UnitTest.exe 4 | D:\agui\test\last\Util\Util.UnitTest\obj\Debug\Util.UnitTest.csprojResolveAssemblyReference.cache 5 | D:\agui\test\last\Util\Util.UnitTest\obj\Debug\Util.UnitTest.exe 6 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.UnitTest.exe 7 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 8 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\obj\Debug\ResolveAssemblyReference.cache 9 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\obj\Debug\Util.UnitTest.exe 10 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 11 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 12 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.Components.WebServer.dll 13 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.Common.dll 14 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.dll 15 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 16 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.Components.WebServer.pdb 17 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.Common.pdb 18 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\Util.Common.xml 19 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.xml 20 | E:\agui\mycode\Utl\Util(20160708)\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 21 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 22 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Common.dll 23 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.WebServer.dll 24 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.dll 25 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 26 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Common.pdb 27 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Common.xml 28 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.WebServer.pdb 29 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.xml 30 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 31 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.TestManager.dll 32 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.TestManager.pdb 33 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Database.dll 34 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Database.Mapping.dll 35 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Database.Mapping.pdb 36 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Database.pdb 37 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Database.xml 38 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.dll 39 | D:\agui\test\last\Util\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.pdb 40 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 41 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.UnitTest.exe 42 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 43 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.dll 44 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.dll 45 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.TestManager.dll 46 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.WebServer.dll 47 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.dll 48 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.Mapping.dll 49 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.dll 50 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 51 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.pdb 52 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Common.xml 53 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.pdb 54 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.TestManager.pdb 55 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Components.WebServer.pdb 56 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.Mapping.pdb 57 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.pdb 58 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\Util.Database.xml 59 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.xml 60 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 61 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\ResolveAssemblyReference.cache 62 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\Util.UnitTest.exe 63 | E:\agui\mycode\Utl\Util(20160713_2)\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 64 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.UnitTest.exe.config 65 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.UnitTest.exe 66 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.UnitTest.pdb 67 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\HtmlAgilityPack.dll 68 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ImageBreak.dll 69 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 70 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.dll 71 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FileSystem.dll 72 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FtpUtility.dll 73 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.SocketBridge.dll 74 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.TestManager.dll 75 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WcfService.dll 76 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WebServer.dll 77 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.dll 78 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.dll 79 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.dll 80 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.pdb 81 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Common.xml 82 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ImageBreak.pdb 83 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FileSystem.pdb 84 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.FtpUtility.pdb 85 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.SocketBridge.pdb 86 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.TestManager.pdb 87 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WcfService.pdb 88 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Components.WebServer.pdb 89 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.pdb 90 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Database.xml 91 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.pdb 92 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\Util.Mapping.xml 93 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\HtmlAgilityPack.xml 94 | D:\agui\program\csharp\Util(20170708)\Util.Test\bin\Debug\ICSharpCode.SharpZipLib.xml 95 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.UnitTest.csprojResolveAssemblyReference.cache 96 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.UnitTest.exe 97 | D:\agui\program\csharp\Util(20170708)\Util.Test\obj\Debug\Util.UnitTest.pdb 98 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 99 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.UnitTest.exe 100 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 101 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 102 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\ImageBreak.dll 103 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 104 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Common.dll 105 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.FileSystem.dll 106 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.FtpUtility.dll 107 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.dll 108 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.TestManager.dll 109 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.WcfService.dll 110 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.WebServer.dll 111 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Database.dll 112 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Mapping.dll 113 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.dll 114 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Common.pdb 115 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Common.xml 116 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\ImageBreak.pdb 117 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.FileSystem.pdb 118 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.FtpUtility.pdb 119 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.SocketBridge.pdb 120 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.TestManager.pdb 121 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.WcfService.pdb 122 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.WebServer.pdb 123 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Database.pdb 124 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Database.xml 125 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Mapping.pdb 126 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Mapping.xml 127 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 128 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\ICSharpCode.SharpZipLib.xml 129 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\obj\Debug\Util.UnitTest.csprojResolveAssemblyReference.cache 130 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\obj\Debug\Util.UnitTest.exe 131 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 132 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.RedisCache.dll 133 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\StackExchange.Redis.dll 134 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Newtonsoft.Json.dll 135 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.RedisCache.pdb 136 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Util.Components.RedisCache.xml 137 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\StackExchange.Redis.xml 138 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\Newtonsoft.Json.xml 139 | D:\agui\program\csharp\Util(20170708)\Util.UnitTest\bin\Debug\zh-Hans\Microsoft.VisualStudio.QualityTools.UnitTestFramework.resources.dll 140 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 141 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.UnitTest.exe 142 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 143 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 144 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 145 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Newtonsoft.Json.dll 146 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Common.dll 147 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Database.dll 148 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Mapping.dll 149 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Common.pdb 150 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Common.xml 151 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Database.pdb 152 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Database.xml 153 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Mapping.pdb 154 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Util.Mapping.xml 155 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\HtmlAgilityPack.xml 156 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\Newtonsoft.Json.xml 157 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\bin\Debug\zh-Hans\Microsoft.VisualStudio.QualityTools.UnitTestFramework.resources.dll 158 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\obj\Debug\Util.UnitTest.csprojResolveAssemblyReference.cache 159 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\obj\Debug\Util.UnitTest.exe 160 | D:\agui\program\csharp\Util_VersionFull\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 161 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.UnitTest.exe.config 162 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.UnitTest.exe 163 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.UnitTest.pdb 164 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 165 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Common.dll 166 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Database.dll 167 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Common.pdb 168 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Common.xml 169 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Database.pdb 170 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.Database.xml 171 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Newtonsoft.Json.xml 172 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\zh-Hans\Microsoft.VisualStudio.QualityTools.UnitTestFramework.resources.dll 173 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\obj\Debug\Util.UnitTest.csprojResolveAssemblyReference.cache 174 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\obj\Debug\Util.UnitTest.exe 175 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\obj\Debug\Util.UnitTest.pdb 176 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Newtonsoft.Json.dll 177 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.EntityMapping.dll 178 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.EntityMapping.pdb 179 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\Util.EntityMapping.xml 180 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\HtmlAgilityPack.dll 181 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\EmitMapper.dll 182 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\log4net.dll 183 | D:\agui\program\csharp\Util.Basics\Util.UnitTest\bin\Debug\log4net.xml 184 | --------------------------------------------------------------------------------