水平显示数据库列数据
本文关键字:数据 数据库 显示 水平 | 更新日期: 2023-09-27 17:59:21
我有一个场景,其中我必须水平显示每个表字段的数据。
ID 1 2 3 4 5
Name 'Ahmad' 'Umar' 'Nadeem' 'Raza' 'Saquib'
City 'New York' 'Paris' 'London' 'New York' 'London'
有人能告诉我在ASP.NET C#中如何做到这一点吗?
类似的东西:
class Program
{
static void Main(string[] args)
{
HumanDto humanDto = new HumanDto();
List<Human> humans = new List<Human>();
humans.Add(new Human(){city = "London", id = 1});
humans.Add(new Human() { city = "London2", id = 2 });
humans.Add(new Human() { city = "London3", id = 3 });
humans.Add(new Human() { city = "London4", id = 4 });
humans.ForEach(e => humanDto.Add(e.city, e.id));
}
}
public class Human
{
public Int32 id { get; set; }
public String city { get; set; }
}
public class HumanDto
{
public List<Int32> Ids { get; set; }
public List<String> Cities { get; set; }
public HumanDto()
{
Ids = new List<int>();
Cities = new List<string>();
}
public void Add(String city, Int32 Id)
{
Ids.Add(Id);
Cities.Add(city);
}
}