1205 results found
-
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 -
Intellisense always accept on TAB
Type "string.jion". A popup will appear showing the members of string, with a dotted line around "Join". In Visual Studio if you press TAB it will accept it. In LINQPad it does not, and adds a tab instead. Thanks!
7 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 -
Support INotifyPropertyChanged for Dumped objects
Support INotifyPropertyChanged in the same way as IObservable, i.e. update the value when the property changes
3 votes -
For portable installs, allow `resultstyles.css` to be loaded from the executable folder
Many files will loaded from the folder containing the executable, resultstyles.css is not one of them.
6 votes -
Add different assemblies with same name
I have two different solutions but with the same assembly name but different projects. One is a upgrade of the other. When i add another assembly if it is of the same name, it overwrites one that is already existent, even if their paths in explorer is different.
1 vote -
Dump Roslyn SyntaxNode variables in the "Tree Visualizer"
I really love the "Roslyn Syntax Tree" visualizer, and use it a lot to inspect how the code looks like a tree.
However, I also do a lot with Roslyn, analyzing code, and writing code fixers. I'd really love it when I have a SyntaxNode, to be able to dump that to the Tree visualizer, and see it's tree there.
9 votes -
Stop scrolling current line to the top of screen after CTRL-E,D formatting
every time after CTRL-E,D formatting, moving current line to the top of the screen flickers the screen. I think it would be good to simply leave the screen as it is
2 votes -
Hide Script Box and Load Form for customize query input for end user
I make many query then allow end user to use making report.
I would like to hide script box to end user.
End user just select script and run to see result.Also, I need to Load Win Form or WPF to replace same position of script box that let user select condition for query.
1 vote -
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 -
Make it possible to define aliases for the SQL results.
When we create a Linq expression or whatnot, the SQL generated aliases our tables to "t0", "t1" - etc. There are many times it would be nice if the alias either maintained the variable we used in our query (table=> table.ColName) or allowed us to define aliases in some other, metadata file.
Thanks!
9 votes -
Add grid editing for 3rd party drivers
By this the driver for postgresql could use the grid for editing as well
3 votes -
Tree view for queries with groups
In support of Tabs, it would be useful to have a treeview of queries, not saved ones but current ones, the current tab version is successful only to a point. I regularly have about 30 tabs up in a sequence of tests I run.
Also the ability to name the queries in Tab view (but not save) would be a powerful thing.1 vote -
Ability to compile using Roslyn Nuget packages
For example, this one
https://www.nuget.org/packages/Microsoft.Net.Compilers/2.0.0-beta13 votes -
Show shortcuts in the My Queries pane
Simulate more Win Explorer-like behavior in the My Queries pane with respect to folder shortcuts. If I add a shortcut to another folder location in the folder designated for my queries... I can click that folder shortcut to navigate to the folder containing to those queries. This would probably also necessitate some navigation buttons for the pane (back/forward).
Now.. you may ask why not just store all my queries under a single folder. I am sure there are many reasons why one might wish to store their queries in various locations... but my main reason is that I keep some…
1 vote -
Make Nuget DependencyVersion property configurable
If pulling a nuget package into a query, Linqpad seems to use -DependencyVersion Lowest. This works fine, if the package dependencies are maintained properly, but often it fails.
If the public interface of the referenced package changes, but the package dependencies are not adjusted after an update, the package cannot be loaded in Linqpad.
An example is the Splat dependency of the ReactuveUi package.
It would be great to be able to set the DependencyVersion or update the referenced dlls.
1 vote -
Show Graph in Export and Allow to Copy
very nice and simple reporting capabilities with show graph feature, please allow to export it into html at list or copy to clipboard
1 vote -
Util.RawHtml doesn't seem to monospace <pre> tags
When I try to render some HTML that I get back from an FtpWebRequest call, dumping it to Util.RawHtml() gets me back a serif font output... the HTML actually has <pre> tagged content which should be monospaced, if I'm correct about how that gets rendered. When I run the same request via IE, I get exactly what I want.
1 vote -
Enable VM license on Parallels Desktop for Mac?
Licensing page currently indicates "three activations for virtual machines running VMWare, MS Virtual PC, Hyper-V, Azure Roles, or Azure VMs".
Would it be possible to add Parallels Desktop for Mac to this list? I'm a single user with a Premium license and I already use my desktop licenses on my three PCs. Nothing left to use on my Mac Win10 VM under Parallels. :(
Thanks!
1 vote -
sort database names
When I connect to a server which has a lot of databases (Azure in my case), it would be nice if the list of databases could be sorted alphanumerically in the connection window.
It's possible this option exists, but I have yet to find it!
9 votes
- Don't see your idea?