Settings and activity
72 results found
-
1 vote
An error occurred while saving the comment -
2 votes
An error occurred while saving the comment Have you tried adding the desired references/namespaces and click 'Set as Default'? After doing so, you can propagate the change to other servers by copying the DefaultQuery.xml file in C:\Users\<user>\AppData\Roaming\LINQPad.
-
52 votes
An error occurred while saving the comment Keyboard shortcuts in the latest beta have been aligned with VS - although they're not as yet customizable.
-
18 votes
An error occurred while saving the comment Note that you can also set the database by dragging the database from the schema explorer to the editor - or right-clicking the schema explorer and choosing 'use this database'.
-
122 votes
-
3 votes
An error occurred while saving the comment Why do you want a WPF UI? What difference will it make, other than giving you blurry text?
Joe -
276 votes
An error occurred while saving the comment The latest RC lets you call CreateXhtmlWriter enabling dynamic expansion of results. Use of this feature ties you into IE, though - it doesn't seem to work properly with Firefox.
An error occurred while saving the comment You can use LINQPad's XHTML Dump engine from within Visual Studio by adding a reference to LINQPad.exe and then doing this:
var writer = LINQPad.Util.CreateXhtmlWriter();
To call Dump(), simply call Write or WriteLine on the writer object.
When you want to view the output. call ToString() on the writer - if you write the output to a file, you can then view it in a web browser.
-
10 votes
An error occurred while saving the comment What happens when you enter your proxxy username/password/domain in the textboxes provided?
-
5 votes
An error occurred while saving the comment There is a workaround: you can set the query type to statements and go:
var db = this;
Then you can use db in your queries. -
25 votes
-
9 votes
An error occurred while saving the comment There are already shortcuts for this (they're shown on the context menu)
Control+K = comment
Control+U = uncommentRegards
-
2 votesAdminJoe Albahari (LINQPad) (CEO / Founder, LINQPad) shared this idea ·
You can enter the following as the first line of your statement block to prevent this happening:
Debug.Listeners.Clear();