gpt4 book ai didi

c# - 返回类型为数据表或列表 - c#

转载 作者:太空宇宙 更新时间:2023-11-03 19:04:30 27 4
gpt4 key购买 nike

初学者问题。

我的应用程序中有一个具有以下功能的 DAL 类

public static Datatable GetCustomers()
public static Datatable GetOrderDetails(int orderId)

我被告知最好的做法是将返回类型设置为列表或类。

就是这样

public static List<customer> GetCustomers()
{
Datatable dt = ...;
//then loop through the rows in the table and add to List<customer>
}
public static order GetOrderDetails(int orderId)

我想知道后面有什么优势。

最佳答案

后者明确定义了与 DAL 消费者的契约(Contract),因此他们不必猜测数据表中的内容,它是 Customer 类内容中固有的。此外,它还隐藏了数据访问层类背后的数据访问问题,因此消费者只需处理纯粹的列表和对象,而不是与数据访问相关的任何内容。

关于c# - 返回类型为数据表或列表 - c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30480372/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com