1205 results found
-
Create LINQPad for the Web
Create a web version of LINQPad, similar to jsFiddle or dotnetFiddle. linqFiddle would be an outstanding product and would be infinitely useful.
3 votes -
Util.Dif should handle list inserts and deletions better (but not sure exactly how)
When adding a new item in the middle of, or deleting an item from the middle of the second list to compare using Util.Dif, the rest of the list is flagged as out of sync since it uses an index-based comparison. In other words, Util.Dif compares elements at index 0 with each other, then at 1 with each other, etc.
It would be better if more advanced diffing algorithm was used to do this and could flag the entire element as red if it was removed, the entire element as green if it was added, or individual values with red/green…
3 votes -
Add possibility to load custom js file for result view
This sould make it possible to add custom code for sorting columns or and other interactive behaviours.
3 votes -
Util.Dif Should have an indication of similar or different.
Util.Dif is awesome :)
It would be nice to do something like
var dif = Util.Dif(o1, o2);
if (dif.IsDifferent)
{
dif.Result.Dump();
}3 votes -
Enable special accessibility features when assistive technology is detected
At the moment, items such as the editor do not read with a screen reader (at least the screen reader I use, NVDA, which is available at http://www.nvda-project.org). It would be nice if, when a screen reader is detected, it is changed to something like a rich text box or normal multiline text box with the advanced editing features of the editor that it has now.
3 votes -
Let 'exclude' work on items of IEnumerable
If I'm Dumping an IEnumerable<Foo>, it would be very nice to be able to use "exclude" to suppress members on the individual items; currently, "exclude" looks for properties on the IEnumerable itself. I can accomplish this by Dumping to a data grid, but I think it should work the same way with rich text as well.
3 votes -
name
Allow a query tab to be labeled without having to be saved. This would really help when you are doing a lot of ad-hoc queries and have many query tabs open and need to navigate between them.
3 votes -
Allow us to export as the actual number.
Large numbers are exported as scientific notation.
3 votes -
Allow export of objects.
Allow export of objects with Object and Collection Initializer syntax:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializersSimiliar to this extension for VS: http://www.omarelabd.net/exporting-objects-from-the-visual-studio-debugger/
3 votes -
Support Live Execution
I would be great to use LinqPad as a scratchpad i.e. for it to execute code and print results as I type, or with N seconds delay.
3 votes -
Option to disable saving DB connection data
I'd like to put some script to public git repo, but I don't want to share connection data which is stored in *.linq files. Please add option to skip saving this. I fully accept a must to choose DB after each script opening.
3 votes -
Allow Transparency of CTRL key to be disabled or configurable
I'd like to be able to configure the transparency of the CTRL key when the Intellisense window pops up.
The problem I have is, I use Emacs key bindings and CTRL+N and CTRL+P interfere with my UP/DOWN navigation scrolling through the Intellisense list. It's annoying trying to move up and down and the pop up keeps fading to transparent.
3 votes -
Found a bug related to Linq for database
I recently write a web crawler which fetches data from website and store into the database. Since I have already had some same kind of data in the database, I have to use linq to detect whether or not the data fetched from website has already been in the database. Here comes the problem: every times the compiler runs into the Linq expression against the database table, it seems like it generates a new instance of the database, and not disposing it after leaving the brackets. Thus the query at some point would ran out of the memory. I rewrite…
3 votes -
Quickly select a database to open
Our Dev and QA servers have at least a hundred databases on each server instance. It would be great if there was a "Quick Select" for databases similar to the "Navigate to Query" ctrl+, window. I know there is the drop down at the top, but it is not a searchable drop down.
3 votes -
Inline UI Button to direct execute a single .Dump() statement
Detect the Dump() statements and render an inline Button next to it (or in the left column). That button work immediately execute only that Dump() statement.
Probably only works in the C# statement(s) mode
3 votes -
Include Optional Parameter for Hyperlinq Tooltip
I'm hoping this would be a fairly easy change, but would make my life a lot easier. I dump a lot of abbreviated strings/hyperlinqs which I only sometimes need to differentiate the absolute paths or other truncated details for. It would be great if I could just mouse over the text to get some additional info.
3 votes -
Remove "asterisk" indicator in the file tab when unsaved changes are canceled using "Undo" feature
LINQPad adds * (asterisk) indicator char to the current tab when saved script is changed (char removed/added, etc). It would be great if this * (asterisk) indicator is removed as soon as changes are undone by multiple CTRL+Z commands. As for now, even if file is restored to the original state, the asterisk is still displayed and it's difficult to tell if the file was really changed or not (safe to resave or not?).
Please consider implementing this feature, it should be a piece of cake! :)
Thanks!
3 votes -
add a way to get iwin32Window from linqpad
Dim wnd As New NativeWindow()
wnd.AssignHandle(Process.GetProcessById (Util.HostProcessID).MainWindowHandle)'Add the above code or the c# version of it to a Util function that lets us pop up dialogs that show above the linqpadwindow.
'_____
Dim browser = New FolderBrowserDialog With {.ShowNewFolderButton = False, .SelectedPath = pth}
If browser.ShowDialog(wnd) = DialogResult.OK Then
pth = browser.SelectedPath
End If3 votes -
"Show all nestings levels" works only for the first items!
"Show all nestings levels" works only for the first items! Not for all. Please fix!
3 votes -
Render FSharp.Option types as if they were Nullable<T>
It would be nice if FSharp Option types would render as (value | null), rather than, at the moment, as a nested table with (Some(value) | None)
This would be consistent with the rendering for Nullable<T>, which prefers readability over being totally strict around the type system.
I appreciate you don't want to add an endless list of special cases, but this would be really useful.
3 votes
- Don't see your idea?