question about code comments in book about designing the business layer
- by rod
Hi All,
public static List<Order> LoadAll()
{
// Load all orders in the table. If too
// many records, consider exposing this
// operation as a plain ADO.NET function.
}
What would the "plain ADO.NET function" look like if there were too many records?
Thanks,
rod.