• 大小: 24.68M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: MVC  c  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;

namespace Common
{
    public class DataTableConvertHelper where T : new()
    {
        public static List ConvertToList(DataTable dt)
        {
            List ts = new List();
            if (dt == null)
            {
                return ts;
            }
            // 获得此模型的类型  
            Type type = typeof(T);
            string tempName = string.Empty;
            foreach (DataRow dr in dt.Rows)
            {
                T t = new T();
                // 获得此模型的公共属性  
                PropertyInfo[] propertys = t.GetType().GetProperties();
                //遍历该对象的所有属性  
                foreach (PropertyInfo 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6656  2016-03-02 12:29  MvcTest\Common\bin\Debug\Common.dll

     文件      17920  2016-03-02 12:29  MvcTest\Common\bin\Debug\Common.pdb

     文件       2596  2016-03-02 11:36  MvcTest\Common\Common.csproj

     文件       1940  2016-03-02 10:38  MvcTest\Common\DataTableConvertHelper.cs

     文件       5010  2016-03-02 12:29  MvcTest\Common\MVCHelper.cs

     文件        483  2016-03-02 11:22  MvcTest\Common\obj\Debug\Common.csproj.FileListAbsolute.txt

     文件      13425  2016-03-02 11:36  MvcTest\Common\obj\Debug\Common.csprojResolveAssemblyReference.cache

     文件       6656  2016-03-02 12:29  MvcTest\Common\obj\Debug\Common.dll

     文件      17920  2016-03-02 12:29  MvcTest\Common\obj\Debug\Common.pdb

     文件       6581  2016-03-07 14:18  MvcTest\Common\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件          0  2016-03-02 10:37  MvcTest\Common\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2016-03-02 10:37  MvcTest\Common\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2016-03-02 10:37  MvcTest\Common\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件       1354  2016-03-02 10:37  MvcTest\Common\Properties\AssemblyInfo.cs

     文件    3211264  2016-03-02 10:17  MvcTest\MvcTest\App_Data\aspnet-MvcTest-20160302093941.mdf

     文件    1048576  2016-03-02 10:17  MvcTest\MvcTest\App_Data\aspnet-MvcTest-20160302093941_log.ldf

     文件       1262  2016-03-02 09:39  MvcTest\MvcTest\App_Start\BundleConfig.cs

     文件        275  2016-03-02 09:39  MvcTest\MvcTest\App_Start\FilterConfig.cs

     文件        600  2016-03-02 09:39  MvcTest\MvcTest\App_Start\RouteConfig.cs

     文件       1404  2016-03-02 09:39  MvcTest\MvcTest\App_Start\Startup.Auth.cs

     文件     102912  2016-03-02 09:39  MvcTest\MvcTest\bin\Antlr3.Runtime.dll

     文件     431616  2016-03-02 09:39  MvcTest\MvcTest\bin\Antlr3.Runtime.pdb

     文件       6656  2016-03-02 12:29  MvcTest\MvcTest\bin\Common.dll

     文件      17920  2016-03-02 12:29  MvcTest\MvcTest\bin\Common.pdb

     文件    5062304  2016-03-02 09:39  MvcTest\MvcTest\bin\Entityframework.dll

     文件     580768  2016-03-02 09:39  MvcTest\MvcTest\bin\Entityframework.SqlServer.dll

     文件     334304  2016-03-02 09:39  MvcTest\MvcTest\bin\Entityframework.SqlServer.xml

     文件    6875415  2016-03-02 09:39  MvcTest\MvcTest\bin\Entityframework.xml

     文件       4608  2016-03-02 13:16  MvcTest\MvcTest\bin\HYENCRYPT.dll

     文件      24576  2015-04-28 09:32  MvcTest\MvcTest\bin\IDAL.dll

............此处省略786个文件信息

评论

共有 条评论