How Many .NET DataSources should I have?
I'm fairly new to database programming in .NET.
If I want to call several existing queries from the same database for different tasks, should I have one DataSource
per database, per database connection, or per query开发者_开发百科?
One per resultset, in other words one per query.
精彩评论