Skip to content

LINQPad Feature Suggestions

More than 100 LINQPad features are a direct result of customer feedback! This is the official forum for posting and voting on ideas – we want to hear from you!

LINQPad Feature Suggestions

Categories

1200 results found

  1. I think this is a trivial addition but it would add a very useful feature for similarly named files.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  2. Changed my CPU recently and intend to change it again before the end of the year after the Zen 3 release.

    My JetBrains software continued to work fine, my Visual Studio continued to work fine, only LINQPad was deactivated and I had to do the license transfer.

    Why is that and why do you have to deactivate the software if I change my CPU and what if I run out of transfers? Tough luck?

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  3. When you have a table containing a lot of columns you will probably want to design a query which returns a subset of these. To reduce typing i imagine that i in the datagrid multiselects the columns i want. Ctrl C and then Ctrl V in the query text. Pasted text would be ".Select(t=> new {t.col1, t.col2})"

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  4. Having a list of rows in the grid it would be convenient to be able to rapidly view a right clicked row as a single row. I.e. like when doing .First(t=> t.Id==9) in the query.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  5. Visual Studio does this with a little yellow vertical line beside the line number. It's very handy since one may wish to save changes if they are permanent; on other occasions the change is just temporary (eg the date in a SQL query) and can be discarded when closing.

    PS - it would be great to be able to search these Feature Suggestions to see if there's already a relevant topic that can be updated. I'm afraid I gave up looking after page 4.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  6. EF core 5 provide a ManyToMany navigation , without using the table between. I do not know how to configure this in LinqPad but it would nice to get a similar navigation
    g
    B.R Wolfgang

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  7. 1 vote
    0 comments  ·  Admin →
    How important is this to you?
  8. I've made a Class and in the Property Getter i'm calling Debugger.Break()

    the breakpoint is not hit when displaying a list of these class instances.

    1 vote
    How important is this to you?
  9. If you have them both running, its hard to tell which is which when looking at the task bar. Different Icons would make that distinction easier. I've seen that workout out well for VS Code or Visual Studio.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  10. If I recall, the results tab is just a WebBrowser from the System.Windows.Forms namespace, which is just IE. However, there's now WebView2, which is a browser that's chromium based: https://docs.microsoft.com/en-us/microsoft-edge/webview2/ . I have installed the Canary build of edge and would love to try out LINQPad with that as the results window instead of the IE-based version.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  11. 1 vote
    0 comments  ·  Admin →
    How important is this to you?
  12. It would be really awesome if we could set custom font size for the the result window.

    I know there is option to increase/decrease fonts, but it would be great if I could simply set the size/font that works for me and not have to change it manually for each Result window.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  13. When launching LINQPad, it opens to a new empty query. I'd like that query to be automatically closed/discarded when I open a pre-existing query instead (from the My Queries panel).

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  14. In Connection properties -> Advanced, you can copy the full connection string to the clipboard. That is great, but from time to time I require to do the opposite: Copy a connection string from appsettings.json of my current .NET CORE EF project. It is kind of cumbersome having to copy the multiple parts into the dialog, and would be fantastic if the full connection string could be edited (e.g. in a text box).

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  15. If I get an Error I have sometimes to count the position with the cursor. For other situations it would be helpful the get besides the cursor position the selected length of the text.
    I would like something like "Pos:( 1/ 12) Len: 13" or "Cursor: 1 / 12 / 13" in a statusbar etc.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  16. Please speed up the My Queries 'Go To' (search). I have about 0.5 GB of snippets and I need the search to be faster (maybe run it in parallel. The speed needs to be improved especially when searching content. LINQPad is amazing BTW!

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  17. Dynamically skippable tests are nice, but their status isn't reflected in the results. To support XUnit.SkippableFact (NUGET-package):

    Make the following changes in xunit:

    1. function RunTests - add:
      runner.OnTestSkipped = info => AddTestResult(info);

    2. class TestResultSummary - add:
      public bool Skipped() => _testInfo is Xunit.Runners.TestSkippedInfo;

    3. TestResultSummary / public object Status - add:
      _testInfo is Xunit.Runners.TestSkippedInfo ? Util.WithStyle ("Skipped", "color:orange") :

    To test it:

    [SkippableFact]
    void Test_Xunit3()
    {
    Skip.If(true, "skipping");
    Assert.True(1 + 1 == 2);
    }

    [SkippableTheory]
    [InlineData(1)]
    [InlineData(2)]
    void Test_Xunit4(int x)
    {
    Skip.If(x==2, "skipping");
    Assert.True(1 + 1 == 2);
    }

    Note: Those changes will also work with the plain XUnit. So adding…

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
    1. Open the context menu when a tab is right clicked, even if it is not the current tab.

    2. Have a close tab button (visual studio style X) on each tab.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  18. Example:
    public AttributeValue(Position start, Position end, string rawValue, /QuoteKind quoteKind,/ bool expression)

    1 vote
    1 comment  ·  Admin →
    How important is this to you?
  19. While working on code I really missing the way to raise current row one position up and down by shortcut. The simplest and well known shortcut for that is alt-arrow-up and alt-arrow-down.

    1 vote
    0 comments  ·  Admin →
    How important is this to you?
  • Don't see your idea?