question about code comments in book about designing the business layer
Posted
by rod
on Stack Overflow
See other posts from Stack Overflow
or by rod
Published on 2010-06-01T19:27:51Z
Indexed on
2010/06/01
19:33 UTC
Read the original article
Hit count: 285
c#
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.
© Stack Overflow or respective owner