1190 results found
-
12 votes
-
Tab Icons
It would be nice if the tabs had icons showing if they were SQL or code files. If you have mixed tabs of both, it would be much faster to find the query you're looking for.
2 votes -
b able 2 specify references assemblies & namespaces in linqpad.config
I use linqpad to execute scripts on servers on the cloud. I copy linqpad.exe plus a few useful .net assemblies onto each server via script.
I dont want to have to manually add in the references each time I load linqpad onto a server. It would be much more useful ( and mistake proof) if I can simply do a deploy to my server which included a linqpad.config with the references to my utility assemblies as well as extra namespaces. Please comment if this is not clear and I'll elaborate further.
2 votes -
in the export results functionality, provide a way to export a complextype definition for the result
1 vote -
Add Table Name to Tab
It would be nice to have the tab name be the name of the table when running the pre-defined right-click queries instead of query n.
3 votes -
1 vote
-
change dump to output in reverse order
Currently if I have a base class with name and age, then inherit from that to add address. Then create a list of these objects, the output is the reverse of what is expected. I would expect the base class members to be first in the results but they are actually last. Example:
void Main()
{
var p = new List<Person>();
p.Add(new Person{ Name = "Joe", Age = 25, Address = "Someplace in Australia."});
p.Add(new Person{ Name = "Ben", Age = 30, Address = "Someplace in Australia."});
p.Dump();
}class PersonBase
{
public string Name { get; set; }
public…6 votes -
Disable Debug Messages Option
When testing our application's objects via LP, our System.Diagnostic.Debug.WriteXXX messages are being captured in the Results window. Is there any way of disabling this feature in LP?
1 vote -
25 votes
-
Filter stored procedures
Display stored procedures ONLY, better to to define an additional filter (e.g. stored procs starting with "sp1")
12 votes -
0 votes
-
Close the application to the system tray
It would be handy if LINQPad closed to the system try so that it could be get around all the time. It's a great lightweight tool for trying out things.
1 vote -
Remember splitter position
It is very annoying to have to reposition the query/results splitter for every new query. Can you make it persist to wherever it was last positioned?
17 votes -
Add an "always on top" capability
Fairly frequently, after working out a solution in LINQPad, I would like to keep it on top while I work in VS or another application.
It would be very helpful to have a toolbar with a button to toggle "always on top". Can be done in a menu obviously -- but a button that is always available would be GREAT!
7 votes -
Support Open Types (Dynamic Properties)
Since linqpad is such a nice UI, it would be great for it to provide first-class support for open types (entities with dynamic properties)
http://www.odata.org/developers/protocols/operations#Processingentriesofopentypes
4 votes -
Add Snippets Tab to house custom drag-and-drop snippets
Add an additional tab along side the Samples and My Queries tabs that will house and organize my custom snippets. From there I need to be able to drag and drop the snippet into whatever current Linq sheet I am working on. This would save a lot of repetitive typing doing ad-hoc queries.
6 votes -
10 votes
-
enter a lambda and see the LINQ (reverse of current functionality, where linq can be seen as lambda)
Basically I want to reverse the current built in process, where you can enter a LINQ statement and down in the results window click the lambda tab to see it converted over. I would like to be able to enter a Lambda expression and in the results window see the LINQ version of it.
14 votes -
Remove online activation
Resharper provides a user friendly copy protection and LINQPad should do so too. Please.
3 votes -
Enhance autocomplete to allow listing only Properites, Methods, etc.
Add autocomplete options to only list properties, methods, events, etc.
3 votes
- Don't see your idea?