1198 results found
-
Ability to print charts and other Dump output
Would be nice to be able to print out the Dump output, including the charts.
2 votes -
fix
Is it possible to use linqpad 5 with odata driver using metadata stored on a local file ?
1 vote -
Make the "Export" function extensible
The "Export" feature currently supports Excel, Word and HTML. It would be nice if there was a way to extend this with our own, custom formats.
3 votes -
linq debugging
I would like to be able to debug inspect each step of linq queries.
1 vote -
Option to have Output autoscroll
Most of the time people dump one chunk of data but when modifying "live" data I need to track where a task is upto in case i need to pause/stop and resume at a later time.
To do this I output myself (Console.Writeline) progress stats and the current ID im working on in my loop.
I can't see an option to have the Output autoscroll on Writelines!
4 votes -
Make points on point chart more visible
The sheer fact that I can make a point chart with one command is awesome, but the dots are very hard to see. Could you either make them bigger, or change colors to something that stands out more?
2 votes -
F1 link to page in your books
Assume that a user has a PDF of your book or Skeet's book. Think of using the Nutshell and In Depth (Skeet) books as help files by linking context help (F1) in LINQPad to topics in the PDF books. If manipulating the PDF is too difficult you could load the clipboard with the appropriate page number for the topic; the user could paste the page number in the upper left box of acrobat or PDF reader is used. I like LINQPad and I have the super-duper-expensive version but I use LINQPad as a C# and NET learning tool for my…
1 vote -
Give option to disable encryption of the Connection
Give a checkbox option to disable encryption of connection string and database password. Or some ways to dynamically change like password from system variables. Because the portable version connections doesn't work by copying x-copying everything to other system in automation.
1 vote -
BUG: Virtual nav prop in child entity (TPT) is eager loaded and causes MARS error
I'm writing some sample code for a class using AdventureWorks 2012. I created POCO's for the Person.BusinessEntity and Person.Person tables setup for TPT inheritance. The Person entity has a nav prop for phone numbers to the PersonPhone entity. When I run this in a C# program, it works perfectly. I've verified with DbContext.Entry(...).Collection(...).IsLoaded that the nav prop is not being eager loaded. When I access it in a LINQPad query (eg from person in Persons) it crashes with a MARS error. I have sample code.
1 vote -
Hide things correctly.
If a Dump(caption) method was called on an object, and later that object was hidden, the green Dump envelope with the caption stays visible.
Also, DumpContainer cannot be easily hidden, I had to use Style="display:none".1 vote -
Exclude replication objects from database object tree
It would be great if replication objects and MS shipped objects could be excluded from the database object tree. I don't have the "Include System Views and SPs" option checked on the connection.
Whether it's a new option or controlled by the same include system option, it would be nice to be able to exclude objects that are ismsshipped and replication objects (that don't have ismsshipped = 1 but do start with 'sp_MS') like the examples below.
-- MSreplicationobjects
-- MSreplicationsubscriptions
-- MSsubscriptionagents
select
s.name,
t.*
from sys.tables as t
join sys.schemas as…4 votes -
Please support vi emulator commands with inner/outer/tag modifiers
Only d is supported currently. ci( ca( vi( va( etc. Also, cit vit etc? Thanks much!
4 votes -
A column with the same name as the table (eg. Volume.Volume) will not show in the data model
I have a table called Volume. It has a bigint column called Volume as well. Linqpad doesn't show it at all
3 votes -
Implement rainbow braces as in Viasfora
Using Viasfora in VS2019 and have to say it's a brilliant extension. Would be great if you could implement something similar in LINQPad.
Thanks
Davehttps://marketplace.visualstudio.com/items?itemName=TomasRestrepo.Viasfora
3 votes -
Make Connection Dropdown Searchable
Many of our testing and production environments have well over 50 to 100 databases. Manually scrolling through the tree is tedious and scrolling through the Connection dropdown is not feasible. If the Connection dropdown was searchable, it would be far faster to hit alt+c, start typing, and hit enter to open that database.
3 votes -
Add DatePicker control to LINQPad.Controls
There is no DatePicker control available and there doesn't appear to be a HTML5 implementation of <input type="date"> which would automatically show a DatePicker on clicking in the field. I expect it could be done with JavaScript, but a control would be nice.
3 votes -
Option for marked as "Production" database connections
It would be nice to have an option for database connections marked as "Production" to be able or not be able to save changes, modify or delete etc.
3 votes -
Add quick filter box
Add a quick filter box at the top of the My Queries and Samples list to easily filter by name - without having to go into "Go to...". Rename "Go to..." to "Advanced Filter"
4 votes -
Textbox input pane for c# / vb / f# program
My suggestion is to add an optional expandable text input pane where any string could be written. This pane would be visible when choosing C# Program (or VB / F# Program) in the language drop down. The program template would then feature a Main(string arg) where the input would be fed.
Many times I find myself pasting json, xml, csv, tsv data etc into the programming pane of linqpad. Afterwards I have to put the text into a string variable and replace quoute characters and other special chars to make it compile. Sometimes I instead write the text into a…
0 votes -
Fix Bug: Dump(), Console.WriteLine() adding line breaks in long string output
When outputting a long string, LinqPad outputs line breaks not in the string after each block of 100,000 characters.
This impacts string.Dump() (with no description), Console.Write(string), and Console.WriteLine(string).
This is not just a visual issue with the output window. If you copy and paste from the output window into a text editor, the line breaks are present in the data.
string.Dump("any text") does not exhibit the problem.
Console.Write and Console.WriteLine when used in a C# console application (Visual Studio compiled) do not exhibit this behavior.
LinqPad C# Program demonstrating the behavior:
void Main()
{
"".Dump("Console.Write() has breaks at 100K chars…1 vote
- Don't see your idea?