将查找表从数据库加载到 C# 程序 - 数据结构?

发布于 2024-07-14 19:05:14 字数 262 浏览 6 评论 0原文

我有一个充满 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

掀纱窥君容 2024-07-21 19:05:14

最好的选择是使用 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.

溺孤伤于心 2024-07-21 19:05:14

如果您使用的是更高版本的 .NET,您始终可以使用 Linq 来为您获取该数据。

If you're using a later version of .NET, you could always use Linq to just grab that data for you.

折戟 2024-07-21 19:05:14

如果您想避免访问数据库来获取静态数据,您可以将这些值硬编码到解决方案中的公共类中。 字典集合在这里也可以很好地工作。

当然,权衡是; 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文