1202 results found
-
1 vote
-
Sign assemblies to support internalsvisibleto for signed assemblies
Exposing the internal to Linqpad is a great idea, it would be nice if this work for signed assembies too.
For now the 'LINQPadQuery' is unsigned (PublicKeyToken=null).
LINQpad itself is signed, but this key is not used when signing LINQPadQuery.
75 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 -
Show current region in Statusbar
Display the name of the region that the current line is in if it exists. My 'My Extensions' is getting pretty large now and I'm relying on regions a fair bit. Even so it's quite difficult to know which region I'm currently typing in so a status bar message or right click would be very handy.
1 vote -
Option to change the font for grid view
At present, LINQPad doesn't have the option to change the font for grid view.
The default font for grid view is not well-readable for some characters (such as Japanese).
I hope a new option to change the fonts (font family and size) for grid view.13 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 -
Connect to a sql backup file
To be able to connect to .bak file, SQL Server backup file, would be totally amazing
6 votes -
Add Option to Change the Number of Recent Files Displayed
The recent file list under the File menu seems to max out at 9. I would like the config option to increase this number (e.g. 20) similar to what can be done for the recent files list in Visual Studio under Options|Environment|General|items to show in recently used lists.
1 vote -
Allow searching through columns and table names
Often I want to search through all column names on all tables. For example, I'll know there is a 'description' column in my database, but I don't know what table it is on. I'd like to be able to start typing "desc" and have it show any columns containing the text "desc", and the table that column is on, and it's type. Much like ReSharper's Goto Symbol function.
11 votes -
HATEOAS
You have support for web services. Expand this to support "browsing" sites/services that support HAL or HATEOAS
1 vote -
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 -
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 -
Give preference option to set default fetching count than 100
I'd like to fetch 10 items rather than 100 as 100 items make me to scroll to top always.
It would be good to adjust default fetch count in Preference.
2 votes -
show me the syntax tree even when a compiler error occured
now when a compiler occured, you got nothing in the screen.
no results, no syntax tree, only error info.
there are three kind of compiler error, lexer error, grammar error, semantic error.
if the error is semantic error, the syntax tree must have been generated, so i wish it could be shown in the screen.or in a nutshell, show me the syntax tree when it is possible.
i want this feature for debugging compiler. XD
1 vote -
Clear SQL pane function
Hi, can you please add a function that clears the current SQL dump pane? This would be helpful while stepping thru code with the debugger when I want to keep track with the latest SQL statement showing up in that pane. Maybe a button next to "Analyze SQL v".
4 votes -
Don't store absolute paths in .linq files if you also got the relative paths in there
When storing .LINQ files in source control, running them on multiple machines end up checking in minor changes very often, due to the absolute path of relative references also being stored, like this:
<Reference Relative="..\..\MDA.Cards\bin\Debug\MDA.Cards.dll">D:\dev\VS.NET\MtGDeckAnalyzer\MDA.Cards\bin\Debug\MDA.Cards.dll</Reference>
I suggest you don't store the absolute path when you also got the Relative attribute, so that the programs only change when you actually make a change, and not change because you happen to run them on a computer with a different path setup.
11 votes -
DumpOptions attribute to customize Dump()
1) Ignore - ignore field/property/class in the dumped tree
Example:
public class AggregatedError
{
public string Name { get; private set; }[DumpOptions(Options.Ignore)] public string[] Files { get; private set; }
}
will not display Files property.2) NotExpanded - do not expand collection by default
Example:
public class AggregatedError
{
public string Name { get; private set; }[DumpOptions(Options.NotExpanded)] public string[] Files { get; private set; }
}
will display Files as a collection, but will not expand its by default3) ToString - display object as string
Example:
[DumpOptions(Options.ToString)]
public class AggregatedError
{
public override string ToString()
{…36 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 -
Create a SQL view in the database directly from a Dump() result
Have the possibility to create a SQL view from the result of a dump() !
Linq is create to quickly extract complex data. If after you have just to click a button to save this in database it will very useful.1 vote -
3 votes
- Don't see your idea?