LinqPad Power-Tick

发布于 2024-12-10 14:28:30 字数 243 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

摘星┃星的人 2024-12-17 14:28:31

要使用 Power-Tick 功能,您需要使用反引号键(通常位于键盘上数字 1 键旁边)。

使用此序列选择多个项目:

  1. 通过向上/向下箭头或鼠标选择属性。
  2. `(反引号)键。这将导致所选属性被填充到当前查询中,并且菜单将保持打开状态。
  3. 选择另一个属性并重复该过程,直到选择了所有所需的属性。

换句话说,选择项目时使用反引号键。不要使用 EnterTab 键,因为它们会选择该项目,然后关闭菜单。

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:

  1. Select the property via the up/down arrows or the mouse.
  2. Press the ` (backtick) key. This will cause the selected property to be filled in your current query, and the menu will remain open.
  3. Select another property and repeat the process till all desired properties have been selected.

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.

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