1187 results found
-
Support entity models embedded in another assembly
Right now selecting another DLL causes it to do "AssemblyName.csdl|AssemblyName.msl|AssemblyName.ssdl" which doesn't work
5 votes -
Support multiple tab panes (a.k.a. tab groups)
...like SQL Server Management Studio for example, so I can look at multiple code snippets and/or result sets side-by-side together, and so I can organize related stuff together when I'm using LINQPad for multiple projects at once.
23 votes -
include another .vb file(s) in a .linq file...
include another .vb file(s) in a .linq file... perhaps a "#include aFile.linq" directive...
Will be a start point to use a library of classes or functions...4 votes -
support XSLT
It would be very nice if there was the single snippet IDE for LINQ, SQL and XSLT. Architag XRay XML Editor is good for XSLT, but just not as good (ergonomic) as LINQPad is for LINQ.
37 votes -
3 votes
-
Display triggers
I would like the to be able to see triggers that are on tables. In the same way that I can look at the definitions of SPs and functions.
15 votes -
Create DataContext with XmlMappingSource
In the connection properties dialog, you could add a field for XmlMappingSource path and then use it to create the DataContext:
string xml = File.ReadAllText(pathToXmlMappingFile);
MappingSource mapping = XmlMappingSource.FromXml(xml);
DataContext context = new DataContext(connectionString, mapping);
10 votes -
Configfile per .Linq file
In a .linq file there would be a reference to a config file. That file is loaded as the configuration for whatever runs in the file. This allows code to run that expect certain values in the config, such as anything from the Enterprise Library. It also ensures that the code you call does exactly the same an on a clients configuration.
7 votes -
Boo support would be nice
Like Python and Ruby, this feature could be integrated with no pain. There is an hosting interface for boo. It's all about syntax coloring and intellisense.
2 votes -
Change database selector to two dropdowns
One for server and the other for database. With many connections having only a single dropdown makes the list quite long and hard to navigate.
18 votes -
Support for custom DateTime formatting (also for TimeSpan etc.)
LINQPad's results use the default ToString method. I would be excellent if you could register certain types to have a custom rendering.
5 votes -
Add an "all files" option when browsing to open a SQL CE database
Our SQL CE database does not use a standard extension. We use a custom one so we can associate it with our application. I can simply rename the file when I want to use LINQpad with it, but it would be much easier if I were allowed to open a file with any extension as a SQL CE database. I would also be able to use LINQpad to view that database while our application is running, which is sometimes necessary.
3 votes -
18 votes
-
Show the number of rows returned by query
In the results panel, it would be useful to display the number of records returned by the query.
17 votes -
Copy and Paste to Visual Studio
In a C# app, my code is often:
DataClassesDataContext db = new DataClassesDataContext();Then the Linq code is, for example
var results = from answer in db.Answers
where answer.Score > 20
select answerBasically, this cannot be copied and pasted to / from LinqPad as the tables are in the DataContext. db. breaks linqPad / VS when it is copied back in.
Would be nice to be able to define the name of the DataContext globally (default), or for each query.
5 votes -
auto graph
Small request. I love the visualisation feature "Show Graph" and it would be nice to have the option to automatically graph all columns in a resultset.
7 votes -
allow opendatasource in LINQ
openDataSource and openRowSet don't seem to work in LINQPad under LINQ instead of SQL. I use these on a number of queries, and would hate to have to go back to SQL everytime I needed data from another server on the one I'm on.
4 votes -
1 vote
-
Flag read-only properties in output
I really would like to see for each property whether it's a readonly or a writable property. Maybe you could give the gray background of the headings some red touch for RO ones?
2 votes -
Add a "Copy Name" button on "Password Manager"
There is no "Copy name" feature in the "Password Manager". I need to copy the name and put it in my Query. Sometimes the name is long and hard to remember.
0 votes
- Don't see your idea?