Tagged Questions
Linqpad by Joe Albahari, is a proposed SQL Server Management Studio (SSMS) replacement for SQL queries, but also allows Linq to SQL / EF queries and is a C#/VB code scratch pad.
10
votes
3answers
1k views
LINQPad [extension] methods
Does anyone have a complete list of LINQPad extension methods and methods, such as
.Dump()
SubmitChanges()
Much appreciated!
10
votes
3answers
2k views
Who has bought the autocompletion for linqpad?
Who has bought the autcompletion feature for Linqpad ?
I know it's only $ 19 but I'd like to hear from you if it's worth it... Does it have any bugs? Does it really help in speeding up your linq ...
9
votes
4answers
360 views
Is there any program like LINQPad for Java?
I've found LINQPad to be extremely useful when answering StackOverflow questions for C# or VB.NET. It allows me to write up some quick code, run it, and (if I want) see a nicely-formatted dump of the ...
9
votes
2answers
2k views
LinqPad, using multiple datacontexts
I am often comparing data in tables in different databases. These databases do NOT have the same schema. In TSQL, I can can reference them with the DB>user>table structure (DB1.dbo.Stores, ...
8
votes
2answers
2k views
LINQPad - Dump extension method - I want one!
LINQPad is amazing, particularly useful is the Dump() extension methods which renders objects and structs of almost any type, anonymous or not, to the console.
Initially, when I moved to Visual ...
8
votes
3answers
2k views
8
votes
4answers
3k views
How does LINQPad reference other classes, e.g. Books in the LINQ in Action samples
I'm using LINQPad to create LINQ queries in an application I'm bulding.
I noticed that in the downloaded LINQ in Action samples, e.g. example 4.04, intellisense shows a class "Books" but I don't see ...
7
votes
1answer
307 views
How does LINQPad compile code?
I am guessing it neither invokes csc.exe or implement an entire compiler, so how does it work?
Update: Thanks to Jon Skeet for the pointer to code that was easy to learn from.
string c = @"
public ...
7
votes
2answers
627 views
Is it possible to run LINQPad with Mono (Mac)
I have installed Mono 2.6.7 in Snow Leopard and would like to run LINQPad. I've gotten LINQPad (v2.21) to start but immediately get a FileNotFoundException. Has anyone been able to run it ...
7
votes
3answers
2k views
Is there a LINQPad equivalent to a DataContext class?
I've just begun using LINQPad and so far I like it but most tutorials I have come across for LINQ TO SQL make use of a DataContext class which is generated by Visual Studio for persisting updates etc. ...
6
votes
1answer
97 views
IL Code of an interface
I am using LinqPad and in that I was looking at the IL code(compiler optimization switched on) generated for the following Interface & the class that implements the interface:
public interface ...
6
votes
1answer
439 views
VB.NET linq group by with anonymous types not working as expected
I was toying around with some of the linq samples that come with LINQPad. In the "C# 3.0 in a Nutshell" folder, under Chater 9 - Grouping, there is a sample query called "Grouping by Multiple Keys". ...
6
votes
2answers
292 views
Creating WPF examples in LinqPad
Is there any way to sanely instantiate WPF objects in LinqPad? Here's my example (the correct assemblies are added in the query, etc):
var w = new Window();
w.Loaded += (o,e) => {
w.Content = ...
5
votes
3answers
161 views
Moving From LINQpad to a Proper Visual Studio Project?
I'm learning LINQ to SQL in LINQpad and it's been great, but there's a lot of magic happening under the hood that I don't quite understand. I am connecting to an Oracle database using the optional IQ ...
5
votes
1answer
705 views
Is it possible to use LinqPad with a code-first model
In the past It's been easy to set a connection in LinqPad to a custom assembly that had EF model. Linqpad looks for a that is based on System.Data.Objects.ObjectContext which doesn't exist
How (if ...
5
votes
1answer
309 views
How to increase limit of graph in LINQPad?
Results shown in LINQPad are limited. If objects are deep nested, a red line is shown.
I would like to increase a limit, so I can see more nested objects.
Do you know how to do it? (I have not find ...
5
votes
2answers
759 views
Using linqpad as primary query tool
A member of my team recently moved to LinqPad as his primary query tool (still will use SQL Studio at times) for the simple purpose of forcing himself to make using LINQ more natural to use. I ...
4
votes
1answer
40 views
LINQPad MethodAccessException
I'm trying to use EF 4.1 with LINQPad, but when I run a query I get the following error:
MethodAccessException: Attempt by method
'LINQPadDbConnectionFactory.CreateConnection(System.String)' to ...
4
votes
1answer
219 views
LINQPad 4 unable to find EntityFramework
I'm trying to use LINQPad 4 (the latest beta) with Entity Framework POCO classes. I take the normal path of creating a new connection and then selecting "Entity Framework DbContext POCO(4.1) and then ...
4
votes
2answers
148 views
Scala tool similiar to Linqpad
So I'm a huge fan of LinqPad, but not just for its little LINQ testing but for quick scratchpad development using C# or F# since it adds REPL to C#. Anyways, I know scala has an interactive windows ...
4
votes
2answers
184 views
Connect LINQPad to remote SQL Sever
Disclaimer: I understand the question is very basic, but I could not find the answer in Google or here, and can not do it myself with guessed configuration.
I want to get started with LINQPad and I ...
4
votes
2answers
98 views
Does anybody know what data visualization control is used to present the results in LinqPad?
Does anybody know what data visualization control is used to present the results in LinqPad? Or any alternative for showing hierarchical data in .NET?
4
votes
1answer
179 views
linq to sql: specifying JOIN instead of LEFT OUTER JOIN
Given that I have three tables, Vehicles, Cars, Bikes. Both Cars and Bikes have a VehicleID FK that links back to Vehicles.
I want to count all vehicles that are cars like this.
...
4
votes
1answer
214 views
Possible to clear the LINQPad results window with code?
Using LinqPad, using the extension method Dump(), Console.WriteLine or Debug.Writeline, the values will appear in the results window.
Is there a way to clear this results window during the run of a ...
4
votes
7answers
1k views
Hidden features of LinqPad
I recently purchased LinqPad, and was impressed enough that I also bought the autocompletion license. It's well worth it, but I want to be sure I'm getting the most out of my new toy - are there any ...
4
votes
1answer
150 views
LinqPad just crashed on me. Is my code anywhere on the disk?
I crashed LinqPad while crafting something slightly less than trivial. I don't want to restart it until I'm sure that won't jeopardise recovering my work (if this is possible). My question is: Does ...
4
votes
3answers
499 views
In LINQPad can you access SYSOBJECTS using LINQ?
In LINQPad is there any way to access either the SYSOBJECTS table or the various INFORMATION_SCHEMA.xxx views using LINQ?
I spend a lot of time searching through our huge company database for partial ...
4
votes
3answers
250 views
LINQPad - Log Secondary DataContext to “SQL” Tab
Its easy enough to instantiate multiple DataContexts in LINQPad. Is there any way to set these instances to Log to the "SQL" Tab of the results pane?
Setting myDataContext.Log = this.Log doesn't ...
4
votes
6answers
661 views
Why does .Equals not work in this LINQ example?
Why does this yield an empty set?
Object[] types = {23, 234, "hello", "test", true, 23};
var newTypes = types.Select(x => x.GetType().Name)
.Where(x => x.GetType().Name.Equals("Int32"))
...
4
votes
2answers
335 views
Can I compare IL code to determine which technique is faster or better?
Background
This question got me thinking about something. Lately, since I've been looking at linq pad's IL functionality, I've been comparing the IL code of two approaches to the same problem to ...
3
votes
2answers
95 views
LINQPad and unhandled exceptions
I'm trying to crash LINQPad4 using the following C# statement:
new Thread(() => new Thread(() => { throw new Exception(); }).Start()).Start();
An unhandled exception dialog is shown, but the ...
3
votes
2answers
276 views
Is there a library that provides a formatted Dump( ) function like LinqPad?
I work with a lot of Linq queries in my code, and I'm looking for a library that provides a formatted Dump() function similar to what LinqPad offers. LinqPad's Dump() extension method is really quite ...
3
votes
3answers
510 views
Linq query error
I am using following Linq query:
from p in People
where p.Name == "George Lucas"
select p.TitlesActedIn
where TitlesActedIn is a list. People and TitlesActedIn are associted
But I am getting ...
3
votes
1answer
448 views
LINQPad in Visual Studio
public static class Extensions{
public static void Dump<T>(this T o) { }
public static void Dump<T>(this T o, string s) { }}
These lines allow me to copy code form LINQPad to VS and run ...
3
votes
1answer
173 views
How to query sys tables using LINQ-to-SQL?
I am using LINQPad and I want to get the list of instance pipe names from the sys.dm_os_child_instances table. How is that expressed in LINQ-to-SQL?
This doesn't work:
from n in ...
3
votes
3answers
634 views
Is it Possible to call a Stored Procedure using LINQ in LINQPad?
In visual studio you have the nice designer that encapsulates a stored proc with a nifty little method. I totally love LINQPad and use it on a daily basis at work (haven't had a need to open up SQL ...
3
votes
2answers
322 views
Automatic way to move Visual Studio project into LINQPad?
I thoroughly enjoy the amazing power of LINQPAD (thanks, Joseph Albahari!) and particularly LINQPad's Dump method. Frequently I take an existing Visual Studio project and move it into LINQPad for the ...
3
votes
3answers
281 views
Linq with a long where clause
Is there a better way to do this? I tried to loop over the partsToChange collection and build up the where clause, but it ANDs them together instead of ORing them. I also don't really want to ...
3
votes
3answers
351 views
LinqPad Feature - Does VS do this?
Linqpad, when coding in C#, will draw a vertical line between opening and closing curly braces.
Boy, oh boy, I sure do wish Visual Studio would do this. Does it? Is there anyway to make it do it?
2
votes
2answers
60 views
Reflection in LINQPad differs from actual, maybe due to security?
I have a registered type which is currently access in VB code via:
Dim prog As Object = CreateObject(sPath)
prog.Show(parameters)
I've rewritten this into C# as:
var progType = ...
2
votes
3answers
53 views
Get a count of a linked collection using OData and LINQ
I set up the OData feed for Stack Overflow as outlined in the wonderful article Using LINQPad to Query Stack Overflow and I want to do something like:
Users.Where(x=>x.Badges.Count==0).Take(5)
...
2
votes
1answer
34 views
How do you set Command Timeout in Linqpad?
I have recently started using LinqPad, and bought the Autocomplete option and am really loving it. This is an excellent product!
I wanted to ask if there is a way for me to control the command ...
2
votes
2answers
38 views
Modify “model” to add relationships in LinqPad?
I'm using LinqPad to query a MySQL MyISAM database. There are foreign keys, but no constraints on them, so LinqPad can't pick up the relationship. I'd like to add these relationships (tell it which ...
2
votes
1answer
45 views
Directly referencing ObjectContexts like in LinqPad
I'm in the process of moving some code from LinqPad to a regular C# VS2010 environment.
I noticed that in LinqPad, you can just directly use an ObjectContext (i.e. using the pluralized table name) ...
2
votes
1answer
204 views
var keyword not working in LINQPad 4
I am trying to run a simple code in LINQPad as either C# Program or C# Statements:
var query = dbtable.Where(f => f.date== new DateTime(2011,10,18));
fd.Dump();
I get the following error:
...
2
votes
1answer
84 views
Emacs failure in loading charset map when saving file with unicode
I created an ordinary text file on Windows 7 64-bit using gnu emacs 23.3.1. I can edit the file with other programs such as LinqPad (the file happens to be a linqpad script, extension .linq). ...
2
votes
4answers
332 views
How does LINQ expression syntax work with Include() for eager loading
I have a query below, but I want to perform an Include() to eager load properties. Actions has a navigation property, User (Action.User)
1) My basic query:
from a in Actions
join u in Users on ...
2
votes
3answers
333 views
iterate over fields using linq
I've got a table with alot of columns and want to concaternate all the string fields in a row together so I can perform a search through it without comparing the search string to each field in turn.
...
2
votes
1answer
268 views
Using C# 5 async feature in Linqpad
Is it possible to use C# 5 async features in Linqpad snippets? Does anyone know of any hack/beta which allows you to do it?
2
votes
1answer
271 views
Performance Question between two Linq Queries in LinqPad and in Practice
I have a query:
(from sr in ctx.STARS_Route
where sr.STARS_RouteStopDestination.Any(i => i.IsWorkingSet == true && i.STARS_DistrictRoute.DistrictId == ...