1197 results found
-
Add support for C# 9.0 in LinqPad 5
I have both LP5 and LP6, but I don't seem to have a way to write code snippets in C# 9.0 against .NET Framework 4.6/4.7/4.8. I'm fine with switching over to LP6 if/when I want to target .Net core or .Net 5/6, but I still need a way to test the latest language features against the older Framework versions.
3 votes -
Need a full LINQPad version 6 video
While LINQPad Version 6 was released in 2019, if you do a google search on "linqpad version 6 video", it shows all but one of the tutorial videos were produced before 2019. Only one was produced in 2020, and it focuses solely on databases.
Instead, I want a tutorial video that includes the new version 6 hooks into visual studio. For example, the Rainer Stropek YouTube video "C# LINQ - Part 2- Basic LINQ Queries" has a nice elaborate visual studio Enumerable example with a JSON file. Under LINQPad 6, I'd like a video tutorial that shows how to load…
1 vote -
Great great work. Could you please include functional programming.
Either Options Some None Map Reduce...
1 vote -
Dark Theme like Windows 10 Dark / Visual Studio 2019 Dark
Dark Theme like Visual Studio 2019 Dark
3 votes -
Pinned tabs show in a separate row
Add ability to have pinned tabs show in a separate row.
This allows easier navigation between queries when you have many open at one time.
2 votes -
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
- Don't see your idea?