1205 results found
-
Clear SQL pane function
Hi, can you please add a function that clears the current SQL dump pane? This would be helpful while stepping thru code with the debugger when I want to keep track with the latest SQL statement showing up in that pane. Maybe a button next to "Analyze SQL v".
4 votes -
Remove "Active Queries" from task bar when you press Ctrl+TAB
when you press Ctrl+TAB to swtich from one query to another, a new icon appears in the taskbar (active queries form). Is it possible to remove this or have an option to now show it?
Every time I hit ctrl+tab my taskbar moves and I think something important is happening.
4 votes -
Fix for "Error 2714" when running the "But I don't have NORTHWND!" Sample query.
To fix "Error 2714" when running the "But I don't have NORTHWND!" Sample query, replace the text "Add connection" with 'Add connection' in the comment-section of that query (ie. Replace the double quotes with single quotes).
1 vote -
Allow pasting rows into Data Grid view in edit mode
Sometimes when cleaning up, adding and editing data by hand, there can be an advantage in copying the cells from a query to excel.
When you're done editing, it would be nice to be able to paste the data back in, in the edit mode.
This is possible in Sql Server Management Studio
18 votes -
Linq File as Template (Readonly)
The posibility to define a .linq file as a "Template" (Readonly) would be nice. This would disable the script and would only be able to "Use as Template For A New Query". Another icon for the templates would be nice to.
1 vote -
When exploring db and select a table/sp, ctlr+v copies the object name
When exploring db and select a table/sp, ctlr+v copies the object name
2 votes -
Option to specify TargetFramework(Attribute)
(Like switching the "target framework" in VS)
Use case: To use the latest features like long path support in .NET 4.6.2.
8 votes -
3 votes
-
When choosing a driver, list more extensions
Start LINQPad, click Add connection
Actual result:
- useful drivers (LPX files) are listed.Exepected result:
- include more drivers, eg
https://github.com/dylanmei/linqpad-soap-driverIdeally, this would be more of a nuget style listing.
1 vote -
Ability to have a multiple WCF calls and/or multiple DB connections
Ability to have a multiple WCF calls and/or multiple DB connections in same opened query.
3 votes -
Available for Mobile
I love this and would love for it to be accessible on my Android device.
1 vote -
Allow drag drop of files as full file path
Allow the user to drag and drop a file (perhaps XML) into the code and have its path added at the drop position. Curently if you Shift+Right click in File Explorer you can copy as path, but you end up with back slashes instead of forward ones. Just dragging a file in to query would be g
2 votes -
Tab Color
Tab Color should be easy to distinguish between the active one and the inactive ones
4 votes -
BUG: FileLoadException when querying an EF Typed DataContext with a comma in the folder path
When running a query against an EntityFramework Typed DataContext connection, and the assembly folder path has a comma in it, linqpad shows System.IO.FileLoadException "The given assembly name or codebase was invalid". The context connection and tables show correctly on the left, but queries fail to execute.
1 vote -
Add an overload to Util.Run and Util.Compile/CompileAsync that accepts a QueryLanguage
At the moment it's possible to change the query lang via lprun using the -lang flag. It'd be awesome to be able to do the same when using Util.Run and Util.Compile/CompileAsync from other assemblies.
It'd also be super useful to be able to pass a Stream to the same methods, but that's secondary :).
3 votes -
Regions for Statements
It would be nice if we could use regions in statement mode.
1 vote -
Adopt SharpDevelop's "Tools -> Convert Code to (other language)"
In SharpDevelop there is a useful tool which allows you to load a VB class and then convert it into C# (via Tools -> Convert Code to ...).
It currently supports source code conversions between VB.NET and C# (and vice versa).
Since SharpDevelop is Open Source, maybe it is not too difficult to add this feature to SharpDevelop?
1 vote -
BUG: LinqPad5 is unresponsive or has slow UI and intellisense for large queries
I often use LinqPad as a text processor, where I have a method that returns a large set of data, for example:
void Main()
{
GetWords().Dump();
}// Define other methods and classes here
private List<string> GetWords() {
var list = new List<string>();
list.Add("&c");
list.Add("'d");
list.Add("'em");// ... x 500 more lines
return list;
}
In LinqPad4 this is fine. In LinqPad5, with the regular or "any CPU" install, this bogs down or becomes permanently unresponsive.
Here is an example query, though I have experienced a slowdown in typing and intellisense with as few as 200 lines.
https://www.dropbox.com/s/s3nfq1y3po90djy/High%20line%20count%202.linq?dl=0
Again, works…
12 votes -
Fix: DumpLatest( <IObservable<IObservable<T>> )
The following code dumps the initial state of the IObservable<Int64>, but does not refresh it as new elements are added:
var i = Observable.Interval(TimeSpan.FromSeconds(1));
var w = i.Window(10);
w.DumpLatest();As a workaround, adding the following line of code seems to fix the problem:
w.Subscribe(wi => wi.DumpLatest());
1 vote -
DumpToSlack()!
It'd be so cool if we could output/publish Dump() traces to slack somehow.
Sharing quick reports with my team would be amazingly simple.
7 votes
- Don't see your idea?