C# 实体转换为DataTable

    //AGroupCondition:实体类型
            DataTable dt = new DataTable();


            Type elementType = typeof(AGroupCondition);


            elementType.GetProperties().ToList().ForEach(propInfo => dt.Columns.Add(propInfo.Name, Nullable.GetUnderlyingType(propInfo.PropertyType) ?? propInfo.PropertyType));
            foreach (AGroupCondition item in lstCondition)
            {
                DataRow row = dt.NewRow();
                elementType.GetProperties().ToList().ForEach(propInfo => row[propInfo.Name] = propInfo.GetValue(item, null) ?? DBNull.Value);
                dt.Rows.Add(row);
            }

你可能感兴趣的:(c#)