LinqPad Power-Tick
我正在尝试使用 LinqPad 的“Power-Tick”功能来多选我希望包含在查询中的列名称。例如,如果我输入:
from c in Customers 选择新的{c.
此时会出现一个弹出窗口。这不应该是让我使用“power-tick”的弹出窗口吗?如果是这样,我该如何使用它?每当我单击或选择该弹出窗口中的任何项目时,它就会消失。
(我的 LinqPad 已获得完全许可并具有自动完成功能。)
谢谢。
I am trying to use LinqPad's "Power-Tick" feature to multi-select column names I wish to include in my query. For example, if I type:
from c in Customers
select new {c.
At that point a popup appears. Shouldn't that be the popup that lets me use "power-tick"? If so, how do I use it? Whenever I click or choose any item in that popup, it disappears.
(My LinqPad is fully licensed and has autocompletion.)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 Power-Tick 功能,您需要使用反引号键(通常位于键盘上数字 1 键旁边)。
使用此序列选择多个项目:
换句话说,选择项目时使用反引号键。不要使用 Enter 或 Tab 键,因为它们会选择该项目,然后关闭菜单。
To use the Power-Tick feature you need to use the backtick key (typically next to the number 1 key on your keyboard).
Use this sequence to select multiple items:
In other words, when selecting an item use the backtick key. Don't use the Enter or Tab keys since those will select the item and then close the menu.