1190 results found
-
Add TimeSpan timeout parameter to Util.ReadLine<TResult> method. Add CancellationToken parameter to Util.ReadLineAsync<TResult> method.
I've implemented a Task timeout extension to abandon long running tasks. When that task is setup to check for a cancellation token's IsCancellationRequested property the task can finish appropriately.
Currently when calling Util.ReadLine or when awaiting Util.ReadLineAsync the task gets abandoned but not cancelled. The user prompt box remains open and I haven't found a way to cancel\remove\reset it.
A cancellation timeout (or cancellation token on the async method) would be useful for automatically selecting the default value after a specified timeout has elapsed. Execution could then be terminated or continued as the script has been directed.
8 votes -
Enable code folding for comments (such as ///<summary> .... ///</summary>
Code folding works already for properties and methods but not for comments which use the three slash prefix such as:
/// <summary>
/// Gets or sets the name
/// </summary>
public string Name { get; set; }8 votes -
Allow theme to sync with system
In Windows 11 (maybe others too) you can change the system theme and programs (and even websites!) that have their theme set to "sync with system" will change accordingly.
Make LINQpad switch between the light and dark theme depending on what the windows theme is set to.
8 votes -
auto graph
Small request. I love the visualisation feature "Show Graph" and it would be nice to have the option to automatically graph all columns in a resultset.
7 votes -
Configfile per .Linq file
In a .linq file there would be a reference to a config file. That file is loaded as the configuration for whatever runs in the file. This allows code to run that expect certain values in the config, such as anything from the Enterprise Library. It also ensures that the code you call does exactly the same an on a clients configuration.
7 votes -
Show SQL-Server Execution Plan
I always look at them in SSMS. I think that SQL Server returns them as XML so it should not be hard to print that out.
7 votes -
Add an "always on top" capability
Fairly frequently, after working out a solution in LINQPad, I would like to keep it on top while I work in VS or another application.
It would be very helpful to have a toolbar with a button to toggle "always on top". Can be done in a menu obviously -- but a button that is always available would be GREAT!
7 votes -
REPL
like CsharpRepl in mono
7 votes -
oledb
add ability to connect via oledb
7 votes -
7 votes
-
1 click reference a dll from currently running VS project
something along the lines of either:
A) a plugin to visual studio (toolbar button) that I can click "open in Linqpad" that will launch linqpad with a reference to the assembly of the current project, plus a dialog that pops up, where I can select any of the other projects in the solution to also reference, this will automatically bring in the namespaces as well.7 votes -
Sort Columns
Having just started a new job, I'm working with entirely new tables. It would be really great if LINQPad would let you sort the columns in the display. It would make finding a column so much easier.
7 votes -
7 votes
-
Connection Timeout option
I get timeout error if initialize Linq to Sql Connection at local sql server with many database inside. Please add a timeout option to it.
Thank you very much.
7 votes -
Provide a way to parametize queries
It would be nice if it was possible to add parameters to a linqpad query so that when you run it you are prompted to supply a parameter value. I realise I can just edit the contents of the file with a new value, but being able to treat a linqpad query as a small program that takes some parameters and then returns results would be useful.
7 votes -
Reference and Import Microsoft.VisualBasic by default for VB queries
Some parts of the VB 'language' are actually implemented within the Microsoft.VisualBasic assembly, which is normally referenced by default by VB projects. eg IIF
Linqpad doesn't add this reference and import when a VB query is created, and so valid VB will fail in Linqpad until the reference is added. This is either confusing or irritating, depending on who you are.
Suggest adding the reference and the import by default to avoid confusing novices and/or annoying anyone else unlucky enough to have to be prototyping a quick VB function here and there.
7 votes -
Impersonation for Linqpad
Many times I am unable to execute operations on a remote machine and also I need to execute a set of operations on machine which is in another domain. In that case it would be nice If I can impersonate linqpad to use a different credential.
Few suggestions
1. Add Util.Runs (username, password)
2. Store a list of users with linqpad like connections so that the user credentials are encrypted and can be just called as
Util.Runas("refer User connection Name");7 votes -
run current command
Thanks for AMAZING productivity tool. I would like a feature to run only the command at cursor (not all commands on page). Suggested invocation - right-click context menu option and/or [Alt/Ctrl] + F5.
7 votes -
I suggest add support for Generic List<T> intellisense
When you want place a code that uses Typed Generic List (List<T>), Intellisense does not suggest syntax.. i.e:
List<string> fields = new List<string>(){"One","Two","Three"};
When you type List, must to appears List<T> suggestion.
7 votes -
Change the snippet replacement colour to something readable when using dark theme
If I change the background colour of the editor to black, it enables a dark theme, which on the whole is great.
But if I use snippet replacements I can't read the replacement characters because the background colour is bright, light green and the foreground colour is white.
E.g. type "prop" then tab. The word "foo" is unreadable. If I start typing to replace "object", that text also becomes unreadable.
7 votes
- Don't see your idea?