1208 results found
-
Show line-numbers on results area.
If you are working with remote people sharing screen it is helpful to indicate others where to put attention without describe a full line information.
1 vote -
Add dump customization via Visitor pattern
Atm customization for Dump is highly restrictive and only works on customizing top level object. Converting it to Expando is next to useless for heirarchial objects as it results in significant loss of functionality (empty lists are rendered as objects with Count/Length property vs "(0 items)" string as in default Dump version, sub-objects don't get properly rendered.
What might be much better from customization point of view is ability to customize Dump via a visitor pattern. For each property (node) in object graph, you would get a "VisitMember" callback with it's property type and value. At that point you decide…
1 vote -
Allow linqpad.exe to be referenced from VS again
Messages from the past suggest that it is possible to add linqpad executable as an assembly reference to Visual Studio projects and use it to generate HTML output of the wonderful Dump() method. This is not possible anymore, based on my attempts with VS 2022 running on Windows 10. I would gladly pay, or pay extra to be able to do this, but having it back as part of the standard paid distribution would be a much welcome improvement.
1 vote -
Claude AI
First and foremost, we are very happy with the software you provide. We use it in several of our projects (e.g., https://gegenfeld.com/tools as well as https://jntzn.com and https://jntzn.de/). However, we would like to suggest a Claude AI implementation as an alternative to ChatGPT/OpenAI, if that's possible. Keep up the good work!
1 vote -
Add a Zoom percentage dropdown to the editor window, similar to Visual Studio.
Add a Zoom percentage dropdown to the editor window, similar to Visual Studio.
1 vote -
Back and Forward buttons
Back and Forward buttons just like in VS and Rider. It makes it so much easier to navigate back and forth in the code.
1 vote -
dark mode
Dark mode in MacOS v8.103.1 works, but the entire UI flashes different shades of grey with the cursor blink. - makes it unusable for me.
1 vote -
Enable HierarchyId type option for type data context
LINQPad supports the HierarchyId type for automatically built data contexts. However, a typed context from an own assembly does not have this option. It can be addressed by overriding the OnConfiguring-method and doing this manually. However, this still renders the expand feature in the connections-tree uselses.
1 vote -
dump as c# class initialisation
A new dump method that could dump as a C# class initialisation, eg
new Foo() {
MyProp = 27,
MyString = "a string"
},
new Foo() {
MyProp = 39,
MyString = "another string"
}etc
1 vote -
winget
Would it be possible to remove the winget dependency on the sdk? I have dotnet 9 SDK installed, but the dependency forced an install of the dotnet 8 SDK. I realize I could use
--skip-dependencies
, but I typically do awinget upgrade --all
and forget to add it.1 vote -
Praise from Claude Sonnet 3.7
The way LinqPad handles containers and UI updates works really well for this type of admin tool. The separation of different UI sections makes the workflow intuitive:
Enter a user ID and find the user
See the current permissions
Make your changes
Save and see the resultsThis approach could easily be adapted for other administrative tasks like:
Managing user roles
Configuring application settings
Reviewing and approving content
Batch processing operationsIt's impressive how much functionality LinqPad offers for creating quick utility tools like this. You get a lot of the benefits of a full GUI application without the overhead…
1 vote -
Allow DumpTell() or Dump (title) to dump to a DumpContainer
var someValue = 123;
var dumpContainer = new DumpContainer().Dump();// I don't know a way to put the content of someValue.DumpTell() or someValue.Dump("My title") to dumpContainer
1 vote -
LINQPad 9 - Show My Scripts location as just LINQPad Queries
Currently, it displays the absolute path. Perhaps it could be shown on hover for those who might find it useful.
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 != null
to
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
- Don't see your idea?