c# 利用反射动态给实体类对象赋值
2022/6/22 1:21:18
本文主要是介绍c# 利用反射动态给实体类对象赋值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
转:http://blog.sina.com.cn/s/blog_659a572b0100xp5s.html
例子如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcApplication2.Models;
using DataAccess;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Reflection;
namespace MvcApplication2.Controllers
{
/// <summary>
/// 将datatable装入指定类型的集合
/// </summary>
/// <typeparam name="T"></typeparam>
public class GenericList<T>:List<T>
{
public GenericList(DataTable dt, string f)
{
System.Type tt = System.Type.GetType(f);//获取指定名称的类型
object ff = Activator.CreateInstance(tt, null);//创建指定类型实例
PropertyInfo[] fields = ff.GetType().GetProperties();//获取指定对象的所有公共属性
foreach (DataRow dr in dt.Rows)
{
object obj = Activator.CreateInstance(tt, null);
foreach (DataColumn dc in dt.Columns)
{
foreach (PropertyInfo t in fields)
{
if (dc.ColumnName == t.Name)
{
t.SetValue(obj, dr[dc.ColumnName], null);//给对象赋值
continue;
}
}
}
this.Add((T)obj);//将对象填充到list集合
}
}
}
}
//////////////////////实体类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace MvcApplication2.Models
{
[MetadataType(typeof(EmployeeData))]
public partial class Employee
{
public class EmployeeData
{
[DisplayName("用户ID")]
public int ID { set; get; }
[DisplayName("姓名")]
[Required(ErrorMessage = "用户名不允许为空")]
[StringLength(50, ErrorMessage = "用户名长度必须小于50个字符")]
public string Uname { set; get; }
[DisplayName("性别")]
public bool Sex { set; get; }
[DisplayName("出生日期")]
[Required(ErrorMessage = "出生日期不允许为空")]
public DateTime Birthday { set; get; }
[DisplayName("是否婚配")]
public bool IsHp { set; get; }
}
}
}
//////////////////调用
GenericList<Employee> list1 = new GenericList<Employee>(dt, "MvcApplication2.Models.Employee");//调用
return View(list1);
这篇关于c# 利用反射动态给实体类对象赋值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#