Tagged Questions

1
vote
3answers
42 views

How do I view an expression tree with LINQPad?

Maybe I'm missing something obvious, but I how can I view the expression tree for this query: from word in "The quick brown fox jumps over the lazy dog".Split() orderby word.Length select word …
0
votes
1answer
19 views

How to add multiple query folders in LINQPad?

In the lower left corner of LINQPad, there is an area for display queries. One tab is My Queries and another one for Samples. I could not find a way to add more than one folder like in My Queries, …
3
votes
6answers
114 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")) …
0
votes
1answer
26 views

linqpad 4.0 and code only

how do i linqpad with code only in ef 4. i mean how to reference metadata when there is no edmx file?
1
vote
2answers
96 views

LINQPad for .NET 4.0

Using LINQPad, I am trying to test a few snippets with my own C# objects, which are written in .NET 4.0 (Beta 1) using VS2010 B1. When I try to use it, I get the following message in LINQPad: …
0
votes
1answer
35 views

How to declare variable in LINQPad

Hi all, Do you know how to declare variables in LINQPad in order to hold the query result and use it later in multiply queries? Thanks!
2
votes
2answers
194 views

Linq query works with null but not int? in where clause.

I have a linq query function like (simplified): public IList<Document> ListDocuments(int? parentID) { return ( from doc in dbContext.Documents where doc.ParentID == parentID …
3
votes
1answer
91 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, …
2
votes
3answers
166 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 …
0
votes
2answers
118 views

LINQPad and Oracle

Does LINQPad work with Oracle? Has anyone tried? What do you suggest?
4
votes
2answers
99 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 …
1
vote
2answers
131 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 …
1
vote
2answers
284 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. …
0
votes
1answer
21 views

linqpad installation problem.

The install is going through just fine. I am unable to launch it post-install. I get an error saying 'Application failed to initialize properly. (0x0000135). Click OK to terminate." Please help.
0
votes
2answers
54 views

database inspection while debugging

I am trying out some cascade options with nhibernate mapping and have a unit test where I'd like to use a tool to inspect the state of the database. I was hoping I could use linqpad to do this, but …

1 2 next
15 30 50 per page