1205 results found
-
Add database management features, like create/drop tables, columns
In order to drop SQL Management Studio completely, more sql management features are needed.
33 votes -
Create a WPF UI
Self-explanatory, replace the Win Forms UI with a WPF UI or allow users to choose which one to download.
3 votes -
Remove online activation
Resharper provides a user friendly copy protection and LINQPad should do so too. Please.
3 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 -
Support entity models embedded in another assembly
Right now selecting another DLL causes it to do "AssemblyName.csdl|AssemblyName.msl|AssemblyName.ssdl" which doesn't work
5 votes -
Replace full namespace references with aliases
In the additional namespace imports I put "using Outlook = Microsoft....Outlook".
When I'm in a call that wants something of that namespace, replace the full entry with just the alias Outlook.
33 votes -
Allow Showing of SQL without Query Execution
Very useful to get a sense of what querys produce what SQL.
11 votes -
Show SQL-Server Execution Plan
I always look at them in SSMS. I think that SQL Server returns them as XML so it should not be hard to print that out.
7 votes -
allow setting of a 'default connection' for linqpad to use on startup
When I start up linqpad, it's always to use the same database (the database of the product I work on), but by default it lists "no connection". Rather than constantly making me set the connection, it would be nice to be able to flag one as the default connection (similar to a default printer).
Another option would be to default the connection to whatever was last used (this would be as effective for me since I'm always using the same one).
Yet another option would be that if there's only one connection defined in the Connections window, default to that…
32 votes -
Disable Dump() output without rewriting query (Silent mode)
Would be nice if LINQPad would have the ability to turn of Dump() output as an run option, to speed up execution.
An advanced featrue would be to flag Dump() statements with and option like DEBUG, VERBOSE etc. to allow switching part of the output on and of as needed.6 votes -
Show rows affected
If I issue an UPDATE (etc.) in SQL in SQL Server Management Studio, it will give me "(1 row(s) affected)". Neither LINQPad (in SQL mode) or Query Express will do this. Could you please add this?
51 votes -
Launch web links in the default browser instead of IE.
I clicked a link in the connection dialog to the IQ toolkit and it launched IE. I suggest you use the default system browser.
15 votes -
Support MEF (Managed Extensibility Framework) based addins
The idea is to make it easy to develop reusbale plugins for LINQPad.
For example: LINQPad could scan a folder (say "plugins") and compile all the scripts therein. These scripts could then be added to a MEF catalog and therefore made available to all LINQPad scriptlets.
For example, if LINQPad were to support an interface ISettings which included a property called DataContext, it would be easy to add new DataContext providers
interface ISettings
{
DataContext dataContext;
}Then when LINQPad (or a script) needed to access the DataContext it would merely use the its DataContext property, with all the heavy…
25 votes -
include another .vb file(s) in a .linq file...
include another .vb file(s) in a .linq file... perhaps a "#include aFile.linq" directive...
Will be a start point to use a library of classes or functions...4 votes -
Make Dump() extension method available in Visual Studio
Dump() extension method is #1 reason I love and use LinqPad.
It would be great if I could add LinqPad.exe as reference to my Visual Studio project and call Dump() extension method on any of my objects.
As Visual Studio does not have any window to display HTML we could have two variants to Dump() extension method
DumpHTML() which return output as HTMLtext and
DumpText() which returns the output as space formatted text in a ASCII TableUser may choose to print the output to the Console, Output Window or write to the disk.
I you think generating ASCII table…
276 votes -
3 votes
-
Support multiple tab panes (a.k.a. tab groups)
...like SQL Server Management Studio for example, so I can look at multiple code snippets and/or result sets side-by-side together, and so I can organize related stuff together when I'm using LINQPad for multiple projects at once.
23 votes -
support XSLT
It would be very nice if there was the single snippet IDE for LINQ, SQL and XSLT. Architag XRay XML Editor is good for XSLT, but just not as good (ergonomic) as LINQPad is for LINQ.
37 votes -
Create DataContext with XmlMappingSource
In the connection properties dialog, you could add a field for XmlMappingSource path and then use it to create the DataContext:
string xml = File.ReadAllText(pathToXmlMappingFile);
MappingSource mapping = XmlMappingSource.FromXml(xml);
DataContext context = new DataContext(connectionString, mapping);
10 votes
- Don't see your idea?