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.

learn more… | top users | synonyms

0
votes
1answer
17 views

linQ to lambda translation not working in linQpad4

I am using LinQPad4 for my first time. I have run one of the LinQ query examples in the program,and when I press the Lambda bottom , the program doesn't show the query transformed into Lambda, can ...
1
vote
1answer
26 views

Is there a way to let linqpad know that a field is a primary key?

I have a table called logs, it has a primary key but is not defined as such. If I want to use LinqPad to update said table's data, I have to set the table to actually have a primary key. If I was ...
0
votes
2answers
26 views

Is it possible to use LinqPad's Hyperlinq() method to create a link to a file path

I really like how Hyperlinq allows you to hyperlinq to a website, but what about to a file? I would like to do something like this: new Hyperlinq(@"C:\temp\afile.txt");
1
vote
1answer
71 views

How to get started with NHibernate in LINQPad? [closed]

I can't find much information on this topic. Does anyone have detailed information about how to get started with NHibernate in LINQPad? I have already added all the DLL references via the F4 window, ...
0
votes
2answers
38 views

LINQPad - Control column order when rendering IEnumerable<MyObject>?

I've written a query that returns IEnumerable<Item>, where the Item class has several different members: public class Item { public string Name { get; private set; } public string Type ...
3
votes
1answer
79 views

LINQ - SelectMany OrderBy Outer Value and then Inner Value

I've been going through the Linqpad sample linq examples. Under "Projecting - SelectMany" they ask you to try and Translat the following linq syntax to Fluent Syntax. This is there sample: var ...
1
vote
2answers
183 views

Get Maximum Value from multiple rows of multiple columns using LINQ?

I'm using LINQPad to evaluate my linq query. My query goes like this: from o in MyTableFirst join p in MyTableSecond on o.TheName equals p.TheName where p.TheName == "CBA-123" && !p.Removed ...
0
votes
1answer
42 views

How to install LinqPad driver not within itself? [closed]

Does anybody know how to install Oracle driver outside linq pad? The computer can not access internet, so have to download the driver from other computer then install it. I downloaded the driver, but ...
1
vote
1answer
62 views

How to debug the code in Linqpad

Start LINQPad In VS, open Debug -> Attach to Process... Choose LINQPad.exe Set breakpoint in your code called by LINQPad C# code, or write Debugger.Break() in your LINQPad script where you want the ...
0
votes
0answers
20 views

How to make LINQPad expression work with entityFramework

The following expression runs correctly in LINQPad. With the EntityFramework it runs but does not sort (no runtime errors just wrong results). Very simple table of: Scores - int 0 -300 Type - ...
1
vote
3answers
123 views

Update query on temporary table in Linq

Hey guys I am new in Linq and I am trying to convert stored procedures. But I am having a hard time writing update query in LINQ my query in SP is like UPDATE @tempTable1 SET someColumn = 1 FROM ...
0
votes
1answer
66 views

LinqPad Dump from DLL

I would like to be able to call Dump from my DLL and code below returns raw HTML result. How can I render it, or what is the correct approach? Method public static string Dump<T>(this T obj) ...
2
votes
2answers
32 views

How to create new sample library in LINQPad

I am trying to figure out how to write a sample library in LINQPad. Went on the official website and tried to google arround as well but couldn't find anything. I am working on a small framework ...
0
votes
0answers
58 views

The name … does not exist in the current context

I have a context like this: /// <summary> /// Constructeur qui récupère automatiquement la chaîne de connection. /// </summary> /// <remarks>Nécessaire pour ...
0
votes
0answers
97 views

Cannot update a row using LINQPad 4

I can query rows fine from an Oracle database, using IQ's Direct Interface, but having trouble with a simple update. I'd like to know if I'm doing something wrong, or if IQ cannot handle my ...
0
votes
0answers
131 views

Run asp.net mvc application from linqpad or console application

How can i start and get ActionResult from some actions of my mvc application use only Linqpad or console application? I know i can create MvcApplication class instanse: var mvcApplication = new ...
1
vote
1answer
106 views

LinqPad SQL Compact Edition Exception

I am getting an exception when performing a the below Linq query in LinqPad. The Db I am using is a SQLCE (Compact edition) SQLCeException: The specified argument value for the function is not ...
0
votes
1answer
21 views

how to clear the server drop down list of useless entries in Linqpad?

In the LINQ to SQL connection window, the server drop down list now contains useless items from attempting to find the correct instance to connect to MS SQL server. The only ones that work are (local) ...
0
votes
1answer
46 views

Linqpad how do you use Util.WriteCSV to write datatable to excel using the Beta version of LinqPad

This was my first mortal stab at it Util.WriteCsv<DataTable>(myDataTable, filePath); The exception i get is 'System.Data.DataTable' to 'System.Collections.Generic.IEnumerable'
7
votes
1answer
146 views

Using LinqPad with SMO

I am trying to use the SMO for Sql Server 2008 R2 Standard, but I am running into an issue whenever I try to Dump an object. The relevant code: void Main() { var connectionString = ...
2
votes
1answer
104 views

How can I use LinqPad's generated context in Visual Studio

This is a follow-on from this question really: Moving From LINQpad to a Proper Visual Studio Project? ..but I'm not able to get it to work properly. An answer to that question suggestions dumping ...
0
votes
2answers
120 views

LINQPad LINQ To SQL Updates with Anonymous Types

Say I have the following query in LINQPad targeting a SQL DB (using C# Statement(s) mode): var query = (from te in Time_Entries select new { te.Period, te.Company_Name ...
0
votes
1answer
63 views

Linkqpad - export results to excel file without the rowcount metadata

I was trying to write to an excel file just the resultset from a query but I keep getting the header column with the row count, which is messing up the subsequent data processing I need to do. I ...
0
votes
1answer
68 views

LinqPad queries __MigrationHistory on first run of an EF query

My project is EF 5, using DbContext. I just noticed that the first time I run any Linq query in LinqPad, there is a slight delay, and the generated SQL starts with the following. The subsequent runs, ...
0
votes
1answer
51 views

LINQPad SQLite numeric value cast

A table in sqlite file has a INTEGER column and a REAL column. When I use LinqPad IQ driver to connect to this file, the data context is made with a Int32? field and a Single? field. But the real data ...
0
votes
1answer
199 views

LinqPad Linq Include() extension method is not found even after adding references

I am able to do var result = OAS_Questions.Count (oasq => oasq.Id!=0); result.Dump(); and even var result = OAS_Questions; result.Dump(); But when I try to include child objects of ...
0
votes
3answers
154 views

select records with max aggregate using Linq To SQL

I have following two tables: DocumentType Id INT, Name VARCHAR(100), Active BIT, CreatedBy INT Document Id INT, DocumentTypeId INT, Version SMALLINT, Text NTEXT I ...
1
vote
2answers
116 views

Why does LINQPad.exe need to be called LINQPad.exe to run? [closed]

I use LINQPad to connect to different environments, say "local", and "development". The connection settings are in LINQPad.exe's config file. To help me organize my settings, I thought I'd make a ...
0
votes
2answers
338 views

Error with SQL Server database in Visual Studio after using LINQPad

I have an SQL Server database which is being used for a MVC 4 project in VS 2010. I'm using LINQPad to run queries against my database. When I open LINQPad, I can connect to my .mdf database file and ...
0
votes
3answers
189 views

Querying using subqueries on a SQLite database approx 10x slower using newer versions of System.Data.SQLite/sqlite3.dll

(See update below) I am having an issue of slow query performance when querying a very simplistic Sqlite datatable of about 500,000 rows from within a C#.Net application (~5sec). I have tried the ...
9
votes
1answer
162 views

How does Visual Studio's debugger/interactive window dump the properties of COM Objects in .NET?

In this related question, I noted that Visual Studio's debugger is able to enumerate the properties of System.__ComObject references, which is "a hidden type used when the wrapper type is ambiguous" ...
0
votes
1answer
87 views

How to use using statement with Entities in LINQPad

using (MyEntities entities = new MyEntities()) { var coursequery = from course in entities.Course select course; } After entering this code into LINQPad ...
3
votes
1answer
317 views

How to get LINQPad to Dump() System.__ComObject references?

I am playing around with using LINQPad to rapidly develop small ArcObjects (a COM-based library for ESRI's ArcGIS software) applications and have had some success in using it to Dump() the properties ...
0
votes
1answer
83 views

Connection Error while connecting sqlite database to linqpad

I have a sqlite database file having .sql extension. I can access the database using sqlite console application. Now I want to access this database through linqpad. I am using IQ driver (MySQL, ...
-2
votes
2answers
84 views

how to solve FileLoadException: Mixed mode assembly in linqPad

i'm new user for linqpad and when i try use it for explorer MS UCMA sdk ProvisionedApplicationPlatformSettings paps = new ProvisionedApplicationPlatformSettings("string","string"); ...
0
votes
1answer
44 views

Other keywords are not allowed when the 'Name' keyword is specified

I get the error in the title when I try to run a query in Linqpad, v4.43.06 Why is that?
3
votes
0answers
42 views

How to quote identifiers with LINQPad + IQ Driver + MySQL?

I'm working with a rather horrible schema designed by an external party and it contains a table named order so when I invoke a query that references this table in LINQPad I get a SQL syntax error. I ...
0
votes
3answers
193 views

How can I Dump() a Newtonsoft JObject in LinqPad?

In LinqPad, trying to call .Dump() on a Newtonsoft JSON.Net JObject yields an exception: RuntimeBinderException: 'Newtonsoft.Json.Linq.JObject' does not contain a definition for 'Dump'. This ...
1
vote
1answer
97 views

Refresh DataContext in LINQPad

Hi there I am struggling to deal with the following situation using LINQPad While(1 = 1) { MyEntity _me = MyEntities.FirstOrDefault(); foreach(ChildEntity ce in MyEntity.ChildEntities) ...
1
vote
1answer
415 views

Make internal classes visible to others assemblies

Is it real to make internal classes from my assembly visible to other assemblies? I know about AssemblyInfo file and [assembly: InternalsVisibleTo()] attribute. But it doesnt work in my case. ...
2
votes
2answers
119 views

How to run linqpad 2.x and 4.x side by side?

I uses LinqPad for running code snippets. I need to run some code that targets 3.5 for which there is separate legacy build. My question is how to run linqpad side by side?
2
votes
1answer
56 views

Is it possible to follow a chain of Foreign Key references in a single query?

I have a database with two (relevant) tables: Actions and Documents and am querying it using LINQ. An Action points to its input Document and a Document points back to the Action that created it, so ...
0
votes
2answers
112 views

Linq query performance between C# and LINQPad

In my Application is use this linq query : var r = from uev in UtilisateurEpisodeVus group uev by uev.Episode.Saison.Serie into pgroup let count = pgroup.Count() orderby count ...
0
votes
0answers
44 views

LinqPad Error: “which has a higher version than referenced assembly”

I run some of my code in LinqPad to get the following error: Assembly 'myAssembly, Version=1.25.0.0, Culture=neutral, PublicKeyToken=a52a67c6b3df733b' uses 'System.Xml.Linq, Version=4.0.0.0, ...
0
votes
2answers
58 views

linqpad ; expected

I'm trying to run the following as a "C# expression" Directory.GetDirectoryRoot( @"C:\Users\DMORIN\Documents\Penguino\Shelves\session").Dump(); I get the error "; expected" If I copy and paste ...
1
vote
2answers
43 views

Is there a way to see the grid results expanded in LinqPad?

LINQPad is great for quickly looking for results with its awesome "Dump" method. However, when I am looking on a dictionary that holds an array (or an object), I see it like that: To actually see ...
0
votes
1answer
97 views

how do I pipe large resultsets from SQL query directly to CSV in LINQpad?

We are using Linqpad for our data stewards as a reporting tool alternative to SSMS. Most of our stewards are still stuck using SQL (we're slowly transitioning some of them to LINQ but one step at a ...
1
vote
1answer
116 views

Linqpad Can't connect to Sharepoint

I am trying to create a LinqPad connection to a SharePoint Server's List Services. I have selected WCF Data Services 5.1 (OData 3) as the data context and ...
0
votes
1answer
33 views

Using registered COM library in LINQPad

... such as the Windows Image Acquisition library? In Visual Studio I would add a reference from the Add References dialog, but LINQPad only allows adding references to .NET assemblies. I don't even ...
2
votes
0answers
107 views

Need some pointers in live streaming images

I'm testing out on how I can stream a specific application on the internet. I already have the code to capture the application interface in a graphicsobject (And in a Bitmap). The only thing I ...

1 2 3 4 5 8