linqpad隐藏特定列或将行限制为单行

发布于 2024-10-20 15:12:44 字数 448 浏览 1 评论 0原文

linqpad 中的 ATable.Dump() 返回整个 ATable。 但是,ATable.Single().MassiveColumn 包含太多数据,它填满了整个结果页面。

有没有办法:

  1. 写得更简洁 ATable.Select(t=> new {col1 = t.column1, col2 = t.column2, ..., coln = t.columnn}) 并省略 MassiveColumn。 (该表大约有 20 列,我想选择除 MassiveColumn 之外的所有内容)

  2. 隐藏 MassiveColumn 以免被转储。

或者是否有任何其他选项可以将转储限制为每行仅允许一行。

ATable.Dump() in linqpad returns the whole ATable.
However, ATable.Single().MassiveColumn contains too much data and it fills up the whole results page.

Is there a way to either:

  1. Write this more concisely ATable.Select(t=> new {col1 = t.column1, col2 = t.column2, ..., coln = t.columnn}) and omit MassiveColumn. (The table has about 20 columns and I want to select everything except MassiveColumn)

  2. Hide MassiveColumn from being dumped.

Or is there any other options to restrict the dump to only allow one line per row.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

喜你已久 2024-10-27 15:12:44

编辑 | 中有一个限制列宽的选项偏好 |高级(列表中的最后一个选项)。

那会有帮助吗?

There's an option to limit column widths in Edit | Preferences | Advanced (last option in list).

Would that help?

假情假意假温柔 2024-10-27 15:12:44

这也应该有效:

ATable.Dump(exclude:"MassiveColumn");

如果您想排除更多列,您可以这样做

ATable.Dump(exclude:"MassiveColumn1,MassiveColumn2");

This should also work:

ATable.Dump(exclude:"MassiveColumn");

If you want to exclude more columns, you can do this

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