1195 results found
-
Support custom project properties and environment variables
Sometimes we need to specify custom project properties and environment variables for a query, for example,
<EnablePreviewFeatures>true</EnablePreviewFeatures>
and env varsDOTNET_TieredPgo=1
. Please allow us to customize project properties and environment variables.3 votes -
Convert to class from anonymous objects
Something like in VS 2019, right click menu, "Convert to class". It would be so helpful for tasks like data exploration.
3 votes -
Add drag/drop to copy/move .LINQ files in the MyQueries tab
Add the ability to copy (Ctrl+Drag) and move (Drag) .LINQ files within the MyQueries tab across folders via drag and drop. Currently, to move a file, one must open the file, use "Save As," and then delete the original.
I know I can use File Explorer to do this, but it would be nice if it could be done right there in the MyQueries tree.
1 vote -
Dark mode in keyboard shortcuts (CSS included in idea)
The keyboard shortcuts page (Help -> Keyboard/Mouse Shortcuts) is always black text on a white background.
Since the page is just HTML (%LocalAppData%/Temp/LINQPad6/KeyboardShortcuts.html), supporting dark mode should just require a bit of CSS. I tried the following and it matches LINQPad's dark mode reasonably well, feel free to copy it as-is:
@media (prefers-color-scheme:dark) {
body { background-color: #1E1E1E; color: #DDDDDD; }
em { background: #4C4C00;}
}1 vote -
Option to disable NuGet/EULA prompts
I would like an option to disable all NuGet related prompts. I would like to be able to run a script without having to worry about NuGet package download confirmation or any particular license attached to the NuGet package. I find these annoying since I use packages from a private feed.
3 votes -
Autocomplete classes in any namespace (+ add using if needed)
Hi, I would like to be able to complete any type that is not in the current using namespaces, similar to what Rider does. It is very inconvenient otherwise.
Example:
Suppose I want to use aRNGCryptoServiceProvider
class, but I don't know what namespace it's in or how it's exactly spelled. I only remember it contains Crypto in it. So I would type "Crypto", press CTRL+Space and get it in the completion list, even though its namespace was not in the using list. You can show its namespace in a completion item to the right, likeRNGCryptoServiceProvider (in System.Security.Cryptography)
.…3 votes -
4 votes
-
Laundy list of desired features:
Laundry list of desired features:
- Export Query to Dotnet SDK Project.
- Import / Export CSX (C# Script) Files
- Incorporate the C# Interactive Runtime and add immediate window, Like Visual Studio. Would be a huge help during debugging.
- Add Unit Test Management with support for MSTest, nUnit and xUnit projects.
- Seriously consider adding a Report Builder. LinqPad is already 75% of the way to replacing MS Access. This could put the nail in the coffin for MS Access.
4 votes -
Please add a mode to the Output panel to render Markdown that is emitted from code.
I like to format error messages and other output with Markdown to make it easier to create reports from code (I typically use LinqPad to free-hand test code and apply weird edge cases or explorer difficult bugs). Seein my output properly formatted will help me and my clients visual what their code is doing. And adding support to render PlantUML would also rock.
4 votes -
util's saved string browser
Utils.SaveString is awesome, but would be nice to have some kind of viewer/browser to see what is being stored
3 votes -
Add option to format document on save
Have a setting to format document on save.
In visual studio I use codemaid and whenever I save files it formats them.
Would be nice as one of those menu elements with a checkmark beside them.4 votes -
Asynchronous Util.Cache overloads
Given that a natural thing to cache would be a download of a file, being able to use the asynchronous methods of HttpClient inside the Util.Cache delegate, without shortcircuiting with .GetAwaiter().GetResult() would be nice.
6 votes -
Treat folder shortcuts in "My Queries" folder as subfolder
I use LINQPad like any other code environment. As such I need to keep code repositories segregated. It would be helpful to be able to jump from one folder to the next without have to reconfigure LINQPad My Queries location. Am guessing there would be quite a challenge to the Search My Queries functionality... I would not expect the search to also search these "subfolders".
1 vote -
Output LINQ/C# text as a comment into the generated SQL
SQL Server keeps track of all queries, including the text. Sometimes queries don't work as expected (timeout, errors, etc.) but sometimes it's also very useful to have a record of everything that is done as a log. I see the generated SQL. I'd like to know the C# that was entered into the query window. As an option, could you add this as a comment?
4 votes -
pin
Pin scripts - like chrome tabs.
I use 4 keys scripts to do my job every day. Every day I need to open these and order them how I like. Great if I could pin them like Chrome tabs
7 votes -
Jetbrains Plugin
As an avid user of Jetbrains, I'm always looking for things that are integrated with jetbrains (mostly for my key/vim bindings). Would it be reasonable to make this a plugin so we could use some of the functionality from within the IDE?
2 votes -
offer an "all open documents" option in Find/Replace dialog
Now you can only find and replace in the current document, but it would be useful to search in all opened scripts.
1 vote -
make Linqpad opensource ...
... so we can fix the things that annoy us ourselves. I'm tired of seeing the same annoyances year after year, unfixed
1 vote -
IL output could show storage too
Comparing the IL C#1 view to ILSpy, the one thing (other than font) that makes it easier to understand in ILSpy is that it includes output for the fields storage, e.g. the IL C#1 for the expression
await Console.In.ReadLineAsync()
generates a MoveNext that refers to fields we can't see the definition for in LinqPad but can see in ILSpy.3 votes -
Add two additional shortcuts in code editing area, current row move up and down
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
- Don't see your idea?