LINQ 重新格式化为内存中的表
我正在开发一个也使用 ChartFX 的 ASP.net 页面。我需要从数据库表中提取一行,然后翻转它,以便该行的所有标签都在一列中,并且该行中的所有数据都在与标签平行的列中。
我真的很想使用 LINQ 来完成此操作,然后在内存中创建一个表来存储这些值,直到我需要使用它们。大家有什么建议呢?
I am working on an ASP.net page that also users ChartFX. I need to pull a row from a database table and then flip it so that all of the labels for the row are in a column and all of the data from the row is in a parallel column to the labels.
I would really like to do this using LINQ and then create a table in memory to store these values until I need to use them. What do you all suggest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用我在 找到的方法来自模型 LINQ 的列名称?
Using method I found at How would I get the column names from a Model LINQ?