linqpad隐藏特定列或将行限制为单行
linqpad 中的 ATable.Dump()
返回整个 ATable。 但是,ATable.Single().MassiveColumn
包含太多数据,它填满了整个结果页面。
有没有办法:
写得更简洁
ATable.Select(t=> new {col1 = t.column1, col2 = t.column2, ..., coln = t.columnn})
并省略MassiveColumn
。 (该表大约有 20 列,我想选择除MassiveColumn
之外的所有内容)隐藏
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:
Write this more concisely
ATable.Select(t=> new {col1 = t.column1, col2 = t.column2, ..., coln = t.columnn})
and omitMassiveColumn
. (The table has about 20 columns and I want to select everything exceptMassiveColumn
)Hide
MassiveColumn
from being dumped.
Or is there any other options to restrict the dump to only allow one line per row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑 | 中有一个限制列宽的选项偏好 |高级(列表中的最后一个选项)。
那会有帮助吗?
There's an option to limit column widths in Edit | Preferences | Advanced (last option in list).
Would that help?
这也应该有效:
如果您想排除更多列,您可以这样做
This should also work:
If you want to exclude more columns, you can do this