1195 results found
-
Tables node under database tree
Add Tables node and display all database tables under this node. Like you do in Views, Stored Procedures, and Functions.
Currently all tables are displayed as direct children of the database node.
10 votes -
Compile into console application
I'd really like the ability to compile a "project" of the type C# Program (or the VB/F# equivalents) into a Console application. Calls to .Dump(); could be replaced with Console.WriteLine(); with IL transformation.
16 votes -
support POCO methods and properties in LINQ to Entities
Currently I get the following exception when accessing POCO methods and properties.
NotSupportedException: The specified type member 'Language' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.1 vote -
Give option to generate EXE
It would be nice to be able to fine tune my query then click "make EXE". An executable would be produced that just ran the query and showed the Dump results as if I had run it directly in LINQPad. A more advanced option would be to allow some simple parameters to be passed and used in the query. This way I could write some simple reporting queries and then give them to someone else or add shortcuts to easily run them again myself.
1,688 votes -
1 click reference a dll from currently running VS project
something along the lines of either:
A) a plugin to visual studio (toolbar button) that I can click "open in Linqpad" that will launch linqpad with a reference to the assembly of the current project, plus a dialog that pops up, where I can select any of the other projects in the solution to also reference, this will automatically bring in the namespaces as well.7 votes -
7 votes
-
allow LINQPad 4 .exe to be named LINQPad4.exe
since LINQPad 4 is a .NET 4 version,
imho,
I'd like to name it LINQPad4.exe
BUT it refuses to run.1 vote -
See generated Std Query Operators under lambda display
Can be important to see the generated calls of Std Query Operators when designing new LINQ providers. Request clicking the lambda button next to "Results" to show this, as in
from x in new int[] {1,2,3}
select x * xnew int[] {1,2,3}.Select(x=>x*x)
This gets real important with the various SelectMany overloads, as in
for a in new int[] {2,3}
for b in new int[] {7, 11}
select new int[] {a, b}does this gen code for
IEn<B> SelectMany<A,B>(this IEn<A> as, Func<A, IEn<B>> f)
or for
IEn<B> SelectMany<A,B>(this IEn<A> as, Func<A, IEn<A>> f, Func<A, A, B>> g)
? Would love…
1 vote -
Save samples to user specified folder
In some Windows network environments local profiles sizes are sometimes restricted by group policies, meaning samples can't be download to the default Application Data folders. My Queries has a Set Folder... option. This would be useful for the Samples tab too.
6 votes -
oledb
add ability to connect via oledb
7 votes -
Improve the performance
Even on my dual quad core box with 4GB RAM, LinqPad can take a long time to open. The UI is often unresponsive when switching to the application or compiling/running a query.
I'd like to see some investment in improving the performance of the application and giving it a more lightweight feel.
6 votes -
Default language to the language you used in the previous session
LINQPad currently defaults to C# Expression. I would prefer VB Expression. If you default to last language everyones happy.
4 votes -
REPL
like CsharpRepl in mono
7 votes -
Simulated Execution (LINQ to SQL)
A driver or mode that executes a program but does not execute any LINQ to SQL changes but instead captures these in a new SQL script you can save.
1 vote -
mongodb
create support for mongodb so i can see the database in the tree format on the left pane
20 votes -
Auto update references
The enhanced search for assembly references is perfect. It would be great if VS2010/F# adopted it like you built it.
It would be great to have an auto update on reference version that are no longer found. I frequently update the Rx.NET references and it's pain to update every single .linq files.
4 votes -
Submit examples to common scripting repository to download directly into LINQPad
Allow users to submit scripts to a LINQPad online script repository and have ratings and view counts to sort by.
Turn on "ambient intellisense" (ambient autocomplete) for extension methods not downloaded but provided on the Web. (Build and maintain index on client). And a magic key combo to automatically download that extension and any dependencies it has on other ambient code. Show reviews, ratings and view count in client.
1 vote -
Non-blocking UI
Don't block the UI thread when doing some expensive work. I'm using LINQPad at work and at home (ironically I paid for my home license but am using the unregistered version one at work) and at work I connect to large databases with thousands of tables and LINQPad takes a long time to "deal" with scripts connecting to these kinds of databases but it would help with a progress bar or at least some notion of "I'm busy" rather than the ghost whitening of the UI.
Otherwise thanks for a superb product. :-)
2 votes -
implement auto-conversion from c# to vb(vice versa)while selecting input-type would be really great
implementing auto-conversion from c# to VB when switching the input-code-type would be the tip of the iceberg for this great thought through linkpad-tool - but probably also really challenging for master Joe
But also without that - Thanks for that really cool working- and education-tool
regards from germany12 votes -
Ctrl + E as alternative execute query shortcut
It would be great if the Ctrl+E SSMS shortcut would be enabled as an alternative to F5. It's easier to reach and makes sense (E for Execute).
0 votes
- Don't see your idea?