1195 results found
-
Run Linqpad script on Azure
Would be cool to write a linpad script and then have a menu option to publish as Azure WebJob, preferably with a scheduling mechanism.
7 votes -
Object count when a reactive source is dumped
When dumping an IEnumerable<T> source, LINQPad also displays the count of items or count of initial items if the number of items exceeds a defined limit. It would be nice to a count (updated live while subscribed) when IObservable<T> sources are dumped.
1 vote -
Allow filtering of the language dropdown
If I never use a certain language (e.g. C#, F# or Visual Basic) I should be able to set an option that will exclude options based on that language from the language dropdown.
1 vote -
Run scripts thru command line (LPRun) on Linux and MacOS
Maybe lprun.exe can be more easily adapted to run cross-platform than the full GUI app. It would be fantastic to just be able to run scripts via Mono.
39 votes -
Add option to include column names for "Open selected cells in Excel"
"Open in Excel" also copies column names from the output, but "Open selected cells" does not.
It can be very handy if the latter could also copy column names, independent of what has been selected (cell, cells, columns or rows). Of course only column names of cells to copy have to be included.
Add as an option (because it may not be wanted every time).1 vote -
Add buttons on query menu for Debugging optionss
Add buttons on query menu for Debugging
ie:
Step into
Step over etcconfigurable in preferences
1 vote -
Reverse Query
So I have data executed and in the results window I would like to click on a single row or column and get the query that I would use to get to that position and use it in c# code.
Would be good for quickly generating a query for C# code.
I have used this in XMLspy to copy an xpath value to clipboard by just pointing at an XML element
1 vote -
Bug: Using Util.RawHtml("...").Dump from VB gives an error "Public member 'Dump' of type 'RawHtml' not found.
Trying to use Util.RawHtml.Dump from VB does not work, it fails with a missing member exception "Public member 'Dump' of type 'RawHtml' not found."
1 vote -
Add a "Favorites" category for Database connections
In my workplace there are 4 environments with 4 servers each, with 10 databases each. When I need to change environments i have a lot of servers to scroll to, even though I only ever use 8 of the databases in each of the 4 environments. It's be really nice if I could mark a server/database as a favorite, and have it be at the top of the list.
8 votes -
1 vote
-
Save tab state on exit
Restore tabs in linqpad start
6 votes -
Unhandled System.NullReferenceException crash after running for a month.
LINQPad 5 AnyCPU has more than once crashed after being left open for a little more than a month. This time it was opened on 2016-11-08 at 13:50:07 and crashed on 2016-12-15 at 08:39:19. It opened a warning dialog and the only content was System.NullReferenceException.
Event Viewer information:
Faulting application name: LINQPad.exe, version: 5.10.0.0, time stamp: 0x57fc44fd
Faulting module name: System.Windows.Forms.ni.dll, version: 4.6.1590.0, time stamp: 0x5787eece
Exception code: 0xc0000005
Fault offset: 0x000000000085f047
Faulting process id: 0x5468
Faulting application start time: 0x01d239bea23f2b74
Faulting application path: C:\ProgramData\LINQPad\Updates50.AnyCPU\510\LINQPad.exe
Faulting module path: C:\Windows\assembly\NativeImagesv4.0.3031964\System.Windows.Forms\37004ddc6f466d807c52ca3b7f9f9827\System.Windows.Forms.ni.dll
Report Id: 96ead35e-c299-11e6-8ab9-d89d67cdb257Faulting application name: LINQPad.exe, version: 5.10.0.0,…
4 votes -
To be able to search/filter in connection combo box
with the shortcut Alt+C one is able to drop down the connection combo box. However, when you have several databases it gets too long to scroll using the arrow key. It would be really good if it is possible to do a fuzzy search and shorten the list of choices just as who the intellisense is working today.
9 votes -
Add Server Core support
Currently v2 and v5 versions of Linqpad do not start in Server Core with a fatal COM exception.
If this COM component it's requesting is not critical, perhaps it could be possible to ignore the error or start in feature-limited mode, thus making Linqpad a useful tool for on-the-box troubleshooting/scripting on Server Core servers.
6 votes -
Dump object to separate panel
I would like to be able to dump arbitrary objects to a new or secondary panel, the same way we can call DumpFormatted on XDocuments.
Ex: new[] { 1, 2, 3 }.DumpToPanel("PanelName", <other dump options>);14 votes -
Digitally sign all EXE files - it make application white listing much easier for the enterprise
Digitally sign all EXE files - it make application white listing much easier for the enterprise
1 vote -
A provider for LINQ over code reflection
Instead of querying database, I would like to easily query "code" from a specific assembly.
For example, let's say I want to find public methods in class whose name ends with "Controller" that have no "Permission" attribute declaration, I would write:from c in assembly.Classes
where c.Name.EndsWith("Controller")
from m in c.Methods
where m.Modifier == Modifier.Public
&& m.Attributes["Permission"] == null
select m3 votes -
Show current region in Statusbar
Display the name of the region that the current line is in if it exists. My 'My Extensions' is getting pretty large now and I'm relying on regions a fair bit. Even so it's quite difficult to know which region I'm currently typing in so a status bar message or right click would be very handy.
1 vote -
Make the 'Additional References' section allow for relative paths (rather than absolute).
It sounds like there is already support in the .linq files for relative paths and allowing for paths to be specified relatively allows for transfer among users/machines with different setups
2 votes -
Query Tab undock
Please tabs undock options. When use multiple monitor this future
it can be useful.
thanks a lot6 votes
- Don't see your idea?