1201 results found
-
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 -
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 -
Have a short tutorial on how to query a Sql Server database
I downloaded LinqPad. Opened it and added a new db connection, but how do I actually query? Please give some example code.
For example, I have a table called 'Login'.
i wrote: 'from l in Login select l' but I get errors when executing this.How do I actually query against my database? Do you have some sample code.
Thanks
4 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 -
Name new tabs as {TableName} instead of Query {X}
So it is easier to identify. All named "Query 1", "Query 2" doesn't tell much.
1 vote -
Add support to JavaScript language
Add JavaScript language so that we can easily test logic and functionalities without opening a browser.
5 votes -
reopen
Reopen all tabs (saved and unsaved like Sublime Text and so on)
4 votes -
Support named tuple elements
When calling Dump() on a typle with named elements, the output columns are "Item1", "Item2", etc. instead of the actual names.
Example:
var names = new List<(int Id, string First, string Last)>();
...
Actual output:
Item1 Item2 Item3
1 Alice Cooper
2 Bob HopeExpected / desired output:
Id First Last
1 Alice Cooper
2 Bob Hope36 votes -
Turn off UnhandeledException handling in settings
It would be nice if we could be able to turn off the Dump of the Unhandeled exceptions, or Change the Default Handler from LINQPad on the 'AppDomain.CurrentDomain.UnhandledException'.
I have not found any way of turning this off without actually using reflection to fetch, and de-register the default, and then re-register my own implementation (it works, but it's buggy).
0 votes -
allow cancellationtoken argument on main method for soft cancellation via ui
You already allow the main method to be async (returning a Task). So implementing a soft-cancel button which only becomes visible when the main method signature contains a CancellationToken argument shouln'd be very complicated.
4 votes -
Add "AnyCPU" into the title bar
Typically, I have 2 copies of linqpad open, the regular and anyCpu (depending on the referenced assemblies) and it would be nice to be able to see which version of linqpad it is. I'm suggesting AnyCpu in the title, but any demarcation should work.
2 votes -
Add optional parameter to Util.Cmd for defined exit codes
Add optional parameter to Util.Cmd that will accept a parameter so alternate success exit codes can be defined. Currently only 0 is acceptable as a success, but some apps use alternate exit codes.
0 votes -
pin connections so imported queries will switch to pinned connection of the same name
When opening a connection across environments, it would be useful if a script could instead of introducing a new connection, it would first try to switch to and reuse any existing connection in LINQPad with the given name. Obviously this should be configurable if made into a feature.
2 votes -
Show a broken connection in the connection drop down
There's a very nice feature that shows broken connections in the Connections panel. It would be nice to have something similar in the connection drop down.
1 vote -
Localize the application (French, German, Spanish)
Is it possible to localize the application (French, German, Spanish).
1 vote -
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 -
Improve Util.GetPassword to manage local passwords and other data
It should be useful to rename the method to Util.SaveData and add a description to better explain what is the saved value, not only the key.
And add an overload to save data linked with a LINQPad user to allow to have different values for the same key to export and import the passwords to other machines across the team.
I've created a script to export/import the password using an encrypted .ZIP file.
Thank you!
1 vote -
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 -
Allow login with windows authentication with other user credentials
Please add an option for logging in to MS SQL Server with other user credentials than currently logged in windows user ("Windows authentication")
9 votes -
Set Open In Excel name to Grid Title from Dump
When you use Open in Excel on a grid, the Excel (html) file that is opened is named after the query name, but should be named after the Grid title from the Dump command that created the Grid, if one exists.
0 votes
- Don't see your idea?