1201 results found
-
Add Export of Results Pane to Util as a method
LinqPad results window has export options for Word, Excel and HTML. It would be helpful to invoke these from the LinqPad query, maybe as a method in the Util function.
Example:
Util.ExportResults(string ExportFileName, ExportType TypeOfExport);
Util.ExportResults(@"c:\MyExport.html", ExportType.HTML);7 votes -
1 vote
-
Boolean Util.CurrentQuery.IsSaved to indicate if current query is dirty or saved
Just a boolean indicating whether the current query is "dirty" or saved: basically wired to the star on the tab title.
My use case is that my script, after executing, saves its artifacts and itself in a zip file (for posterior usage). It would help me if the first lines of my script would be "Oops, you didn't save the current query -> return".
Thank you.
3 votes -
Give option to connect to multiple databases from the same server
When we add database connections to a query, it is always a specific database connection. Instead, if there is an option to add the connection at the server level to the query and the user can query from different databases that are existing on the same server, then that would be amazing. Right now, I have to do this by connecting to various databases from different query windows, each one linking to a specific database, which is not user-friendly and error-prone.
6 votes -
Add convert from SQL query to Linq query (similar to Linqer)
This should be available in this software. As someone that has years of experience in SQL, I find LINQ syntax to be appalling and extremely confusing. I bought the professional version in hopes that this software implemented this feature, it does not, and yes I read the previous request and your reply to the user about VB6 to C# 4 comparison but highly disagree with your decision.
1 vote -
Export the Result window as an image.
Utils.SaveResultWindowImage(string filename, int x, int y, int width, int height)
This can then be used as a simple image rendering service.
3 votes -
Add Navigate to previous location (Ctrl--) to the Edit|Advanced menu
I can never remember (nor quickly find) the LINQPad/VS shortcut for returning to the previous location after using F12. Adding it to the Edit|Advanced menu under the F12 related keys would be very helpful.
5 votes -
Add option to remove trailing whitespace on save
It would be great if all trailing whitespace in the query document is removed when saving the file. LINQPad seems to add lots of erroneous whitespace. Eg. if you're working in an indented code block and hit enter multiple times, the empty lines all have erroneous whitespace.
7 votes -
Please support options on the DbContext Connections: Lazy Load
The EF Core DbContext that supports the DbContextOptions<TContext> does not support any other configuration options -- just the connection string. I really need it to allow Lazy Loading supports and Detailed Errors.
THANK YOU.
1 vote -
LINQPad Windows 10 ARM64 Build
Would be great if LINQPad supported WIndows 10 ARM64 build.
As of Feb 2020 .NET 5 preview doesn't support Windows Forms and WPF and will be released in Nov 2020 and .NET 3.1 doesn't support ARM64 Windows devices at this time.
Thanks1 vote -
Provide way to set resiliency options
With SQL Azure in general and now specifically with the new serverless option it would be great to be able to enable the various ADO.NET and EF Core resiliency options so that you do not get a timeout on startup or when there is a transient failure. Both are just settings for number of times to retry, the retry interval, etc.
For EF Core with SQL you can use something like
optionsBuilder.UseSqlServer(cstr,
sqlServerOptionsAction: sqlOptions =>
{
sqlOptions.EnableRetryOnFailure(
maxRetryCount: 18,
maxRetryDelay: TimeSpan.FromSeconds(5),
errorNumbersToAdd: null);
})In ADO.NET you can do it in the connection string parameters
ConnectRetryCount=18;ConnectRetryInterval=5;Timeout=90
Thank you
3 votes -
Add previous C# versions in samples for "What's New in C# X"
In the Samples tab, add previous C# version samples. For example:
What's New in C# 7.3, 7.2, 7.1
What's New in C# 6.0
etc...Many times, I reference your samples to help 'jog my memory' for syntax and when/where C# language features were introduced.
7 votes -
Save As shortcut
Assign shortcut Ctrl+Shift+S to Save As
Microsoft, as a general implementation, does not assign a shortcut key to Save As functionality. But much of the rest of the development/utility community does. The ability to rename a tab is a useful workaround, but I'd prefer consistency with other applications especially in cases where I'm modifying an existing query (that I haven't cloned).
6 votes -
Ability to right click on "Tables" on a connection and filter the listed tables
title pretty much explains it, but in SQL Management Studio there is an option to filter the listed tables you see in the left handed tree view by applying a filter to match with
1 vote -
Quickly change connectionstring when using a custom assembly with ef core
When using the linqpad driver with EF Core and provide my own assembly, i want to quickly change the connectionstring via the connection dropdown.
I could add every database to a own connection entry, but i want to specify the databaseserver and then quickly change the database.
1 vote -
Allow column exclude / filter (Temporal Tables)
When working with temporal tables there is no way to use LinqPad to alter / insert entites because it attempts to set values on AsRowStart columns -- and so the insert/updates will fail.
It would be nice to be able to exclude a column from consideration in a context / entity as this would solve this problem.
9 votes -
LinkPad 6 - could suggest #load "some file" when pressing Ctrl +.
Could suggest #load "some file" when pressing Ctrl +. in a class present in another file in the same folder.
1 vote -
1 vote
-
'Add relation' menu item in database tree menu. This will help to add connections which are not excplicitly defined in database.
On clicking Add connection sap bo sttle join dialog will appear where one may define relation with other tables. In many databasese relations may not be defined explicitly. This feature solves the priblem.
1 vote -
Edit appsettings.json directly in query properties window in LINQPad 6
It would be nice to be able to edit the appsettings.json file, directly from the query properties windows (F4), comparable to the app.config editor in LINQPad 5/4
7 votes
- Don't see your idea?