1205 results found
-
New Cache() extension - let it be parameters sensitive?
The new Cache() extension is absolutely great feature. One caveat though is that it is not parameters sensitive and it might be misleading in some cases.
A very simplified example:
int userID = 7;
Users.Where(u => u.UserID == userID).Cache().FirstOrDefault().Dump();When I run it - I get the expected user entity.
Now, if I change userID to 8, and I forgot I used Cache(), I will still get the user with ID 7, and I might execute a wrong logic.
To handle that - I use Cache(string) method with key which is combined by the relevant parameters for that query.
Anyway…
1 vote -
1 vote
-
1 vote
-
1 vote
-
Short Date
I would find it helpful if I could control the date formatting. For me and my companies data, I'm usually only concerned with the date not the time. The time tends to fill up the columns. Can we get some way to control how dates are outputted?
1 vote -
Convert URI to linq
I have a odata URI. I need a translation of it in Linq using linqpad. Is it possible?
1 vote -
Allow the File, Edit, Query, and Help menus to drop down on mouse hover.
It would be nice if hovering over the menu titles caused the menus to dropdown and show the items, rather than requiring a click action on the menu titles.
1 vote -
Provide a link to the line causing an exception from the information bar
The yellow bar at the top shows the current exception but if you have a very long linqpad script you need to scroll down to see where the error happened. It would be nice to be able to click the yellow bar to jump down to the exception.
1 vote -
1 vote
-
Generate StoredProc or Func.
Please add the ability to generate a StoredProc or Func from linqToSql. This would be an awesome benefit for devs who hate working with TSQL.
Many Thanks
1 vote -
CTRL-E to execute a query (for those of us who are used to it from QueryAnalyzer days)
User entering CTRL-E should execute a query justlike F5 does. I am in the habit of that keyboard combo from old queryanalyzer days
1 vote -
Save layout, e.g., Results Panel Height, as workspace.
I run queries from time to time, and every time I open a query, i need to adjust the height of Results Panel. It would be very helpful to save the layout for each query. So LINQPad could be used a workspace.
1 vote -
Make Data Context Options sticky
Every time I add a new connection I uncheck the "Pluralize EntitySet and Table properties" and "Capitalize property names" check boxes. I would love it if there was a way to specify a set of default values for the connection.
1 vote -
DateTime display option out of the box
I am working with StreamInsight and I highly recommend to give us the option to include the full ticks when displaying a datetime value, this would be extremelly useful.
1 vote -
A proper help manual.
Recently LinQPad seems to have become rather niche, I don't really understand what the new features do or what they are for. For example this nuGet, I've no idea what or why I'd be interested in. I'd vote for a complete documentation similar to the c# in a nutshell series on each feature of LinQPad hi-lighting premium features where appropriate.
1 vote -
Generate method on the fly
While in "C# Program" mode it would be cool to generate the method stub just like in Visual Studio .. it could be done in 2 ways:
use mouseclick or similar to activate the function
generate the method on the fly while writing (detect when unknown methodname is written when starting/closing a paran/bracket)
1 vote -
Leave the time it took for the query to complete after completion.
When the query is running there is a counter but after it completes the counter goes away, can you leave it up?
1 vote -
Bug: "Export to CSV file" should write BOM to work correctly with Excel
When viewing data in the grid and using the "Export to CSV file", the resulting file doesn’t have a BOM (byte order mark), and so when you double-click the CSV file, Excel opens up and (at least in Excel 2010) shows the following dialog box:
The file you are trying to open, 'MyData.csv', is in a different format than specified by the file extension. Verify that the file is not corrupt and is from a trusted source before opening the file. Do you want to open the file now?
If you click 'Yes', another dialog box is displayed:
Excel has…
1 vote -
Add feature that allows exported Excel data from a SQL database to be refreshed as the SQL database is updated with new data.
Add feature that allows exported Excel data from a SQL database to be refreshed as the SQL database is updated with new data
1 vote -
Allow the LINQ expression tree to be modified before executing the query. I
Allow the LINQ expression tree to be modified before executing the query. I do this in my app so we can write our queries without having to worry about making them multi-tenant. But when I pop the query from our source code into LINQPad, I have to manually edit the query to make it multi-tenant. Would be great if we could hook in a custom ExpressionVisitor.
1 vote
- Don't see your idea?