1190 results found
-
Save Query Custom Settings
I would like the ability to save "settings" in the query. For example, if ask to select a file, I would like to save the file that was selected for the next time I run the query. This would be perfect if I could save the data inside the query file XML section.
3 votes -
BUG: LINQPad's lprun.exe -format:html outputs invalid html
I have a script that I run that generates some html I need to display, however, the output is not valid (missing body and html minimally).
I changed my script that I run to look like this:
void Main( string[] args ) { "Hi".Dump(); return; ... original code and Dump() and RawHtml calls... }
And this is the output I get is the following:
…<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="Generator" content="LINQ to XML, baby!" /> <style type='text/css'> body { margin: 0.3em 0.3em 0.4em 0.4em; font-family: Verdana; font-size: 80%; background: white; } p,
3 votes -
To support big data , such as Apache Spark
Big data is hot and is becoming popular. The most popular platform is Apache Spark.
There is an ODBC driver of Apache Spark at http://www.simba.com/drivers/spark-jdbc-odbc/.
Another option is that Microsoft has a library to access Apache Spark at https://github.com/Microsoft/SparkCLR .
Maybe it is not difficulty to support.
If so, LINQPad can have "big" effect and have more market.
3 votes -
Analyze SQL to allow option to open sql in editor of my choice
Currently there are two options I can select
1) Open as SQL Query in new tab
2) Open in SQL Management StudioIt would be nice to have it open in editor of my choice, eg Open in Toad or Open using PL/SQL developer, as these would give me option to further analyze the query.
3 votes -
Allow option of NOT navigating to empty datagrid when collection contains 0 items - just show placeholder immediately.
I love linqpad and find it more useful than SSMS for many operations. One feature that I would find AWESOME, would be to provide an option to NOT navigate to an empty results grid when there are no entries in the grid.
Kind of like when you click on a Collection in an object Dump datagrid and the collection is Null, it just says null immediately. I would love it if when I clicked a navigation collection from a linq-to-sql (or any datagrid query), and there are no items in the target collection, it would just show 0 items (which…
3 votes -
Ability to compile using Roslyn Nuget packages
For example, this one
https://www.nuget.org/packages/Microsoft.Net.Compilers/2.0.0-beta13 votes -
Add grid editing for 3rd party drivers
By this the driver for postgresql could use the grid for editing as well
3 votes -
Make Instant Share URL Configurable
Allow us to configure the endpoint for Instant Share so we can create our own workflows for script sharing. Instant Share to a local folder, SMB share or Web API URL.
3 votes -
Support INotifyPropertyChanged for Dumped objects
Support INotifyPropertyChanged in the same way as IObservable, i.e. update the value when the property changes
3 votes -
Allow Action<T> as input to Dump()
Sometimes you don't need to Dump() the entire object graph, but instead just a portion thereof. Of course, you can (if in Statements or Program mode) assign a variable, and them Dump() something derived from the variable currently. But wouldn't it be nice, for example if you could do this:
/* some really complex query / .Dump(x => x.Select(y => y.EmailAddress, "Email Addresses")
./ some other operations on the complex query */This wouldn't be hard to code:
public static T Dump<T>(this T toDump, Func<T> filter, string description)
{
toDump.filter().Dump(description);
return toDump;
}Of course, you'd want to have other…
3 votes -
Keep Original Column Names in Generated types
When you generate a model for Linq to SQL, provide an option to not autoformat the property names with upper case first letters. Instead preserve the original field name and use that.
Use case: I have several customers who use LINQ Pad for query prototyping and then copy the results from queries into their programs (I know, I know - not the best of ideas, but that's what they do). The problem is because the names don't match all sorts of fixups have to be done. An option to generate entity properties with the same casing as the underlying fields…
3 votes -
Add an overload to Util.Run and Util.Compile/CompileAsync that accepts a QueryLanguage
At the moment it's possible to change the query lang via lprun using the -lang flag. It'd be awesome to be able to do the same when using Util.Run and Util.Compile/CompileAsync from other assemblies.
It'd also be super useful to be able to pass a Stream to the same methods, but that's secondary :).
3 votes -
Ability to have a multiple WCF calls and/or multiple DB connections
Ability to have a multiple WCF calls and/or multiple DB connections in same opened query.
3 votes -
3 votes
-
Keep history of results, or simple append new results
I use LINQPad for computation. From time to time I need to change a few parameters and re-run the query. Now I have to export results to files then do the comparison.
It'd be nice to give an option to APPEND results instead of CLEAR OLD + NEW. (I can write a line to the output to separate the results from run to run.)
Many thanks.
3 votes -
Add a windows explorer context menu "create linqpad snippet" for .dlls
Add a windows explorer menu short cut that would :
When right clicking assembly files (*.dll) which are .net dlls
startup linqpad with an empty snippet that has the dll as reference.
Ultimately linqpad would reflect the public members of the dll and list them somwher in the left pane.For trying out dlls this would be a killer feature!
You could also implement "spying" on configuration manager so that any calls to ConfigurationManager.AppSettings would alert the user and let him enter a value that the snippet would use.
3 votes -
change var to specific type
Resharper gives handy feature that can change var to specific type.
Linqpad already gives (knows) what var type is. So, it would be good to have a feature to change var to specific type in Edit > Refactoring menu.3 votes -
Allow context constructor with optional parameters
We make use of optional parameters in the constructor of our typed datacontext. However, LINQPad cannot consume this datacontext. I get an error: "The type must define a public parameterless constructor." I propose that if there is a constructor with optional parameters and default values, that constructor should be used with the defaults.
3 votes -
json
Have a results formatted for JSON or JSON strings that layouts out the results in a nice visual way.
3 votes -
A provider for LINQ over code reflection
Instead of querying database, I would like to easily query "code" from a specific assembly.
For example, let's say I want to find public methods in class whose name ends with "Controller" that have no "Permission" attribute declaration, I would write:from c in assembly.Classes
where c.Name.EndsWith("Controller")
from m in c.Methods
where m.Modifier == Modifier.Public
&& m.Attributes["Permission"] == null
select m3 votes
- Don't see your idea?