将查找表从数据库加载到 C# 程序 - 数据结构?
我有一个充满 ID、类别和权重的表,当我读取包含这些类别的记录时,我需要在程序中引用它们。 从数据库读取这些内容并将其放入我可以引用的结构中的最有效方法是什么?
ID(可能还有名称)是唯一的,
数据可能如下所示:
ID,Category,Weight
1,Assignment,5
2,Test,10
3,Quiz,5
4,Review,3
I have a table full of id's,categories and weights that I need to reference in my program as I read in records that contain those categories. What is the most efficient method to read those from a database and put into a structure that I can reference?
The ID's (and possibly the names) would be unique
Data might look like:
ID,Category,Weight
1,Assignment,5
2,Test,10
3,Quiz,5
4,Review,3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好的选择是使用 DataReader 读取表,并将每一行放入包含类别和权重的对象中,然后将每个对象放入字典中。
Your best bet is to read in your table using a DataReader, and put each row into an object containing Category and Weight, then each object into a Dictionary.
如果您使用的是更高版本的 .NET,您始终可以使用 Linq 来为您获取该数据。
If you're using a later version of .NET, you could always use Linq to just grab that data for you.
如果您想避免访问数据库来获取静态数据,您可以将这些值硬编码到解决方案中的公共类中。 字典集合在这里也可以很好地工作。
当然,权衡是; 2 个位置来管理任何未来可能发生的变化。
If you want to avoid a database hit to fetch static data, you can hard-code the values into a common class in your solution. A Dictionary collection would work fine here too.
The trade off of course is; 2 locations to manage for any possible future changes.