1185 results found
-
add a "Close Saved" menu item - similar to vscode
Often I end up in a state with 20 tabs open, some with conflicts ( duplicate ).
I'd like to close all the saved ones, so I can sort out the four or five unsaved ones.
Doh, I found it on File -> Close Unmodified Queries.
It would be nice to have that on right clicking a document tab as well.
1 vote -
Detect links in the result set, starting with http(s), and allow users to click and navigate
Detect links in the result set, starting with http(s), and allow users to click and navigate. This helps to form links and validate them.
For example, SELECT 'https://www.nuget.org/packages/Newtonsoft.Json';
The result should be a clickable link that opens in the browser.
1 vote -
Workspace Separation (Super-Tabs)
I use Linqpad for multiple projects and usually have multiple queries open pr project.
It would be really nice if i could visually separate each collection of queries with super-tabs
I guess something similar to Postman which is able to handle multiple collections of API's
If you are already working on a visual remake or upgrade - maybe have this in your mind when making it :)
1 vote -
LinqPad 8 does not work on MacBook Air M4
I installed on my new Mac but the UI fails to start up.
1 vote -
Add #:sdk support
I'm very pleased that LINQPad 9 includes some support for .NET 10 file-based apps. However, perhaps a fundamental ecosystem difference, that the SDK types that can be specified via #:sdk are not recognized.
To bridge the gap between LINQPad scripts and file-based apps, and to enhance compatibility with various SDK types in the future, I'd like to see an option to explicitly select the major SDKs (Web, Worker, Standard, etc.) that are currently available in the LINQPad script properties, along with support for the #:sdk syntax.
1 vote -
Add Intellisense or Package Explorer support for the #:package directive
This is a minor request, but it would be nice to have visualization or Intellisense support when exploring packages using the #:package directive. Currently, it would be even better if package additions in File-based App code were synchronized with the #:package directive.
1 vote -
Add a UI option to use native Windows titlebars and window borders in the LinqPad main window
In LinqPad 9.4, I've been toggling the "Enable Mica background with Light theme" checkbox, which (for me, at least) seems to also control whether or not the LinqPad Settings window uses "native" Windows titlebars and window-borders - and I've come to prefer native Windows titlebars because I much prefer my specific Active Titlebar color - and I'm certain I can definitely feel UI actions (like dragging the window around) feels slighly more sluggish when the LinqPad Mica option is enabled - but much snappier when it's off.
...but regardless of the Mica switch, the LinqPad 9.4 main window seems to…
1 vote -
0 votes
-
Ctrl + E as alternative execute query shortcut
It would be great if the Ctrl+E SSMS shortcut would be enabled as an alternative to F5. It's easier to reach and makes sense (E for Execute).
0 votes -
Provide more information about thrown exceptions (dump message, stack trace, etc).
Provide more information about thrown exceptions (dump message, stack trace, etc).
0 votes -
Allow hitting Escape key to trigger 'cancel' like Shift-F5 does
Since hitting Esc doesn't seem to trigger any other action, it would be useful for those of us with muscle memory to hit it when we accidentally ran something we shouldn't have. Much faster/simpler than the 2-key combo of Shift-F5. :)
I'm not trying to ask for the larger-scope 'allow remapping keyboard shortcuts', just the Escape key. :)
0 votes -
Update the static driver sample code to detect Context properties of type IEnumerable<T>.
The UniversalStaticDriver class does not detect the properties of the customType parameter that are directly of type IEnumerable<T>. If the customType inherits IEnumerable<T> (like say via IList<T>) then the property is detected. But if the property is actually declared as IEnumerable<T> then it is passed over.
I changed the line that declared ienumerableOfT from:
let ienumerableOfT = prop.PropertyType.GetInterface ("System.Collections.Generic.IEnumerable`1") where ienumerableOfT != nullto
let ienumerableOfT = (prop.PropertyType.GetGenericTypeDefinition() == typeof(IEnumerable<>) ? prop.PropertyType : null) ?? prop.PropertyType.GetInterface("System.Collections.Generic.IEnumerable`1")Kinda hacky, but it fixed the problem for me. Probably a better solution would be to recurse through the type and all inherited types…
0 votes -
line numbers when editing Stored Proc (beta 4.37.11 has it for queries)
Line numbers are present in a beta release , but only for new Query windows and not when viewing/editing Stored Procs in a DB.
0 votes -
connect color of editor with current database
If i work o X DB i have lightred, but i i work on Y DB i work on limegreen editor
0 votes -
Update Microsoft.WindowsAzure.* assembly references to latest versions
Obviously, features new to 1.7 (and later) will not be available as LinqPad seems to reference the 1.1 version. Also, I've been having this issue:
Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' uses 'Microsoft.WindowsAzure.StorageClient, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'Microsoft.WindowsAzure.StorageClient, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
0 votes -
When copying for Markdown/Stack Overflow, find a way to add in using-directives and references
The menu item for "Copy for Markdown/Stack Overflow" ends up copying code that in most cases won't compile without manual intervention by the person who grabs it off of Stack Overflow.
Specifically, these two things is on the query options tab, and has to be manually added for the query code to compile and execute:
- References
- Using directives
It would be nice if those two things could be copied alongside the query code, for instance as specially crafted comments at the top, that would be recognized by LINQPad upon pasting back into it, and moved to the appropriate places.
ie.
…
0 votes -
Always include codes outside of Main() into the selection in Program mode
When the code fragment is selected and then F5 is pressed, LINQPad runs only selected code. I think this feature is nice.
When I choose "C# Program" mode, of course I write some utility codes outside the Main() method.
However, when I select the fragment of code in the Main() and press F5, the build fails, since the definitions outside the Main() wasn't included as "compile target codes".I think that the codes outside Main() method (in C# / VB Program mode) should be always included in compile targets to enable user-defined classes and methods,
even if the code fragment…0 votes -
Maintain a list of most recently used assemblies
There are a few assemblies I often use in LinqPad queries, that are not in the GAC or on Nuget. Every time, I have to browse to their location to find them (e.g. Windows.winmd to use WinRT APIs). It would be nice if there was a "recently used" list in the "Additional references" tab
0 votes -
LINQPad, handy scretch pad.... Why not share?
I keep coming back to LINQPad to write few lines, execute ...verify, then go back to implement the small bit I just wrote and I am sure everyone does that and some would save those random scratch for later use or reference. So I wonder, why not a code snippet share feature directly from LINQPad? It would increase awareness and allow us share or persist some of the quick code written every now and then.
Cheers.
Biniam0 votes -
Re-enable VS debugging for the beta
The debugger in LINQPad 4.5 is awesome, but not as good as Visual Studio's. Before the beta, I was using Debugger.Launch/Break to debug in VS. Now, those launch LINQPad's debugger. Unless and until the debugger is as good as VS's, I would like some kind of button or something (as long as it's faster than using the preferences) to use an external debugger.
0 votes
- Don't see your idea?