1187 results found
-
Support Console output e.g. Backspace /b etc
int updateCount = 343;
for( int i = 0 ; i < updateCount ; i++ ){
string msg = string.Format( "Update Progess:{0:p}" , (double)i/(updateCount-1) );
Console.Write( msg );
Console.Write( new string( '\b' , msg.Length ));
}
Console.WriteLine();4 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 -
Provide a way to parametize queries
It would be nice if it was possible to add parameters to a linqpad query so that when you run it you are prompted to supply a parameter value. I realise I can just edit the contents of the file with a new value, but being able to treat a linqpad query as a small program that takes some parameters and then returns results would be useful.
7 votes -
Theming
Allow the use of VSSettings to control the syntax highlighting colors.
22 votes -
Massive modification on the connections
Having the possibility to do a massive modification on connections (ie : modify the dll containing the EDMx file path or change server address on many connections in one hit)
3 votes -
result clear
Hi;
Can you add a button on the Result section that will allow us to "Clear" the result area?
Thanks!
..Ben5 votes -
Extend the Smart tag for namespace importing to also work for extension methods
The namespace import smart tag works great, but if you are accessing an extension method that it won't offer any suggestions.
1 vote -
Improve Open SQL in SSMS/New Formatting
Would be great if instead of opening like so in SSMS:
Executed Sql Query:
Query: SELECT ... AND ( [LPA_L3].[SomeColumn] = @p1)
Parameter: @p1 : Guid. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 52d87c12-e610-43f8-bdc1-7aee15b19a78It commented out comments and set variable values
--Parameter: @p1 : Guid. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 52d87c12-e610-43f8-bdc1-7aee15b19a78
SET @p1 = '52d87c12-e610-43f8-bdc1-7aee15b19a78';--Executed Sql Query:
-- Query:
SELECT ... AND ( [LPA_L3].[SomeColumn] = @p1)3 votes -
include table schema in entity name
when creating context have a flag which allows us to specify entity name should include table schema
eg
dbo.Customer --> Table
Purchase.Order --> PurchaseOrder
Purchase.OrderDetails --> PurchaseOrderDetail8 votes -
an alias for data context and more control over view and property name creation.
I find myself using LINQpad more and more to test expressions from our projects. It would be nice to have more control to take the 'tweak' out of the copy/paste/tweak process. For example, when I copy an expression from code to linkpad I have to find/replace "db." with "" to remove our context variable references. It would be great if LINQPad could understand that "db." (or some other user defined alias) means the current context.
3 votes -
Option to not show hyperlinks (FK) in result grid.
Sometimes a table might have a couple columns at most that are for viewing, the others are foreign keys. It would be nice to hide those if I don't use the hyperlinks.
1 vote -
.Net Component
Create a .Net component version of this program. To use with asp.net and winform apps.
3 votes -
LINQPad Activations webpage should use client locale for datetime
The LINQPad Activations webpage[0] should display the `Date Activated' in the clients' locale.
1 vote -
Sort Columns
Having just started a new job, I'm working with entirely new tables. It would be really great if LINQPad would let you sort the columns in the display. It would make finding a column so much easier.
7 votes -
Add an option to not display secure strings in the results pane
Short version:
I would like to have an option in LInqpad that would stop it from displaying a SecureString as plaintext in the results pane so that my ActiveDirectory password is not revealed when I .Dump() an object that contains an ICredentials member.Longer description
So, Linqpad has become my favorite c# test/scripting/training workbench. I often use it to explore new API'sI noticed something today was kind of a bummer -- I was working with a co-worker on the TFS API. I .Dump()'d a TFS object that contained credentials, and there was my AD password in the results grid,…
2 votes -
Export to CSV ..next to Excel
I just found "export to CSV", but it was not very intuitive having to switch to grid view, when in big letters there is a Export button right next to the results. The inverse is also true, in grid view there is access to CSV, but not Ecel, Word, Html.
Could you please add the shorcuts ?
18 votes -
Organize Connections Into Folders
Would be nice to be able to organize my connections into folders like "Dev", "Test", "Prod", or by focus, like "Reporting", "Web", "Internal", etc.
288 votes -
Add a Util.ReadPassword method
Util.ReadLine is very handy, but sometimes I use it to enter passwords, and I don't want other people looking at the screen to see my password... A Util.ReadPassword method that hides the input would be nice
4 votes -
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 -
Horizontal scrolling on results
Provide horizontal scrolling without having to go to the horizontal scrollbar, say with SHIFT + Scroll. I dont know where i saw it, but i think it would be useful as some entities have many properties and we need to scroll right
1 vote
- Don't see your idea?