1205 results found
-
Working with large number of tabs open
Bug: Open enough tabs to fill the tab bar, say 15 tabs, take the last one and drag and drop it to move it over, it will jump to the first page worth of tabs (say between 1st and 10th), so you can't move the 14th tab to be the 15th position.
Using the scroll wheel on a mouse could move along the tab bar (as firefox does)
Forward and Backward buttons on the mouse could step between active tabs (as Notepad++ does)
6 votes -
Add new Language Type C# Auto
It might be possible to parse the query contents looking for a Main Block or an ; separator to determine if the query is to be treated as C# Expression, C# Statements or C# Program? If so, this would have the advantage that would can highlight and execute statements that happen to be in a 'C# Program' query (rather than having to copy them to another query window).
6 votes -
Add an option to set the default behavior for intellisense
i.e. Always Show Full List (or press Ctrl+Space or Ctrl+H). Currently you MUST press those keys to get a full list. It would be nice to have an option to show the full list every time.
6 votes -
Support plural table names => singular entity types
When I have a "Customers" table, please support having "Customer" entities.
At the moment, I have the "Customers"-table in the tree view with a "Customers" entity data type, which is bad.
6 votes -
Add Delphi/Visual Pascal.
Delphi/ Prism the .net version can you add to your list of supported languages.
6 votes -
Add TableName.OrderByDescending( t => t.PrimaryKey).Take(50) when right click on the table
I often times need to just view the newly created data recently. If this command can be added to the right click on the table menu will be excellent!
6 votes -
Inline References and Namespace Imports
Like this:
reference @"..\Lib\SomeAssembly.dll";
using SomeAssemblyNamespace;ClassInSomeAssemblyNamespace.SomeStaticMethod();
or maybe to remain true to the C# standard, use custom attributes:
[reference(@"..\Lib\SomeAssembly.dll")]
[using("SomeAssemblyNamespace")]ClassInSomeAssemblyNamespace.SomeStaticMethod();
6 votes -
Expose SQL Connection TrustServerCertificate
A common SQL Azure connection failure is when you are running behind a proxy/firewall. At my office I cannot connect to SQL Azure without turning on the trust server certificate setting in the connection string. Linqpad doesn't expose this right now.
Exposing the ability to set the TrustServerCertificate=true in the ConnectionStringBuilder would allow this connection to succeed.
6 votes -
6 votes
-
Ctrl+E as synonym for F5
Please could you add Ctrl+E as a shortcut for executing the query, this would be consistent with SSMS
6 votes -
Add Ntlm authentication to WCF connections
It seems like you can connect using Ntlm to WCF
6 votes -
Intercept and echo calls to Debug.WriteLine or other trace calls.
Adding a window that allows trace calls to be seen would aid in debugging drivers. These could be seen easily in LINQPad (perhap by enabling/disabling the visibility of these) when loading and testing a new driver or even allow such calls embedded in dynamically created source, to also log stuff - very hard to see otherwise.
6 votes -
Cross database platform LINQ support
LINQPad should be able to join results from two different database platforms in one Query.
In our situation we would like to use it to join data stored in RavenDB with data stored in SQL Server. But I can imagine that there are many real life environments where one would like to join data in one database platform with data in another database platform
6 votes -
Nullref in Dump() when ToString() returns null
I have an object whose ToString() implementation returns null in some instances. I noticed that when Dump() attempts to dump this object, it throws a nullref.
I have modified my code to no longer return null from the ToString(), but it ought to be trivial to update LinqPad to avoid this issue in the future.
Sample:
void Main()
{
new Bar().Dump(1);
}// Define other methods and classes here
public class Bar
{
public override string ToString()
{
return null;
}
}6 votes -
Progressive Dump
While a linq query is going on, I would like to dump the values, but part of the same Dump... if that makes sense. I use LINQPad to handle small menial tasks I don't feel like starting a new VS project for.
So while I am in a long linq query, I would like another method for DumpToExisting([id]) and Dump() should return a GUID or Integer id.
6 votes -
Documentation generation
When you have long code in LinqPad (Several classes in one file) it is really helpful if we can have some documentation. However currently linqpad does not do anything in this area. As a start, it can generate the documentation skeleton when user type /// above the method, property etc. Then if that can be evolved to do the auto documentation generation from the method/property names (like GostDoc), that would be awesome!
6 votes -
transpose output - same way as when using First() but for more rows
I have some tables with lot of columns, but only several rows, it would be nice to transpose the output to have SQL table column names on the left and SQL records (rows) in columns
Such transformation should be used, when some collection returns only one record (in nested table - Navigation property)6 votes -
Show correct line-numbers in stack-traces
The line-numbers in a strack-trace counts from the top of the produced .cs file. This includes the using-statements, and first few lines of the UserQuery class definition. The user has no way of knowing how many such lines there are, so the line-numbers would be almost useless.
To remedy this, LINQPad could add #line-directives
#line 1 "UserQuery" // Just before the user-code #line default // Just after the user-code.
Manually adding #line-directives results in the exception-indicators being placed on wrong lines, but the stack-traces are more useful.
Read more:
http://msdn.microsoft.com/en-us/library/34dk387t.aspx
http://msdn.microsoft.com/en-us/library/szc67b5s.aspx
http://msdn.microsoft.com/en-us/library/dd233195.aspx6 votes -
Allow for Full Screen
I commonly use the full screen option in VS and getting rid of all the superfluous toolbars/menus/tabs/ etc would be helpful
6 votes -
6 votes
- Don't see your idea?