2
votes
3answers
56 views

What is the cleanest way to do an outer join without equals?

I have two lists, I need to find the items in the first list that are missing from the second, but I can only compare them with a Boolean function. class A { internal bool Matching(A a) { ...
2
votes
3answers
109 views

Full outer join of two string arrays

Given the following two strings: Dim str1() As String = {"123", "456", "789", "0"} Dim str2() As String = {"123", "456", "1"} How do I perform a full outer join of str1 and str2 and end up having a ...
0
votes
0answers
72 views

Use a Linq statement to perfrom outer join

Starting with the collection below, what Linq statement do I need to return a results set that satisfies the test? private List<dynamic> _results; [SetUp] public void SetUp() { _results = ...
1
vote
3answers
101 views

Linq To SQL. How to prevent using Apply operator

I have a query: var contactInfos = from person in persons join tempDesiredCar in desiredCars on person.contact_id equals tempDesiredCar.groupEntity_id ...
0
votes
2answers
100 views

How to use (left/right) outer join for this LINQ that join 3 entities?

Using MVC 3, EF4.1: Building a quiz screen, I am joining three entities: Steps, Questions, Responses Each Step can have many questions, each question can have one or no responses My issue is when I ...
0
votes
3answers
251 views

Multiple columns in Linq left outer join

Could somebody help me complete this linq left outer join query so that the second column of the right table (tempData) is contained in the result set even though it may be null? sortedData = From cs ...
2
votes
1answer
135 views

Can't get outer join to work in EF

Never mind, I solved it with the join/into syntax instead. Perhaps that is necessary after all I'm trying to get a Linq outer join to work against EntitiyFramework. public List<OSCDagbokDTO> ...
0
votes
2answers
228 views

LINQ/LinqPad: same query different results

So we copy and paste the exact same query from LinqPad into our EF 4.3 application, pointed at the exact same database and get a different result. In LinqPad we get 2 records returned. In our ...
0
votes
1answer
492 views

Left outer join in Linq To Entities (The entity or complex type cannot be constructed in a LINQ to Entities query.)

I have two class that map two tables of my database: public class Product { public int Id { get; set; } public string Token { get; set; } public string Name { get; set; } public ...
1
vote
2answers
328 views

Linq Outer Join on object array

Consider a set of 6 [StringKey,Value] arrays, in pseudo code: object[,2][6] KeyValueArrays; //illustr as array, could also be List<> or Dict<> I would like to convert this into a single ...
1
vote
1answer
1k views

LINQ: Left Outer Join with multiple conditions

I have two IEnumerables called BaseReportDefinitions and InputReportDefinitions. I need to do a left outer join where i want all the InputReportDefinitions and whichever BaseReportDefinitions that ...
0
votes
2answers
91 views

Inner Exception in outer Join

I don't know why my programme doesn't work. Could you help me please ! I have a inner Exception when i run it. var peoples = new List<People>(); peoples.Add(new People { Model = "Mustang", ...
0
votes
1answer
310 views

Linq Outer Join with defaults on both sides

I have a problem with an outer join. I found this very helpful stackoverflow article: linq-full-outer-join but I am having issues on my join when the data is retrieved with the error: ...
1
vote
1answer
144 views

Why is LINQ-to-Entities is generating an extra left outer join

Background I have 2 tables: OrderItem and OrderItemValue. An OrderItem can have 0 or 1 OrderItemPackageValue. The Primary key in both tables is the same and there is a foreign key reference from ...
1
vote
2answers
385 views

Need help in Linq Queries left Outer Join

how can i write this in LINQ : SELECT T.TestId, S.SubjectName+' >> '+T.TestName +' ('+ CONVERT(VARCHAR(10),COUNT(Q.TestId)) +')' TestData FROM Test T LEFT OUTER JOIN Subject S ...
2
votes
2answers
184 views

Left outer join in Linq

I know there is tons of posts on this but they are all about specific problems that I didn't understand what is left, right and anything I have 2 lists: left and right. I need to select all elements ...
22
votes
5answers
10k views

LINQ - Full Outer Join

I have a list of people's ID and their first name, and a list of people's ID and their surname. Some people don't have a first name and some don't have a surname; I'd like to do a full outer join on ...
0
votes
3answers
454 views

Selecting aggregate (grouped) statistics with records in a LINQ-to-Entities Query

I have a query I'm attempting to port from SQL (T-SQL) to LINQ-to-Entities 4.0 (C#). The result set contains a combination of standard "detail rows" as well as aggregate "statistic" information. The ...
3
votes
3answers
803 views

Left outer join in linq

I have the following query but i have no idea on how to do a left outer join on table 1. var query = (from r in table1 join f in table2 ...
0
votes
0answers
633 views

LLBLGen - How to left join unrelated tables, and obtain records where there is no joined data

We are working with LLBLGen v2.6 and trying to pull back records which do not have a certain relation. This relation is a category with a one to many mapping, and one of our entities can have zero or ...
22
votes
4answers
13k views

How to do a full outer join in Linq?

I've inherited a database that wasn't designed exactly optimally, and I need to manipulate some data. Let me give a more common analogy of the kind of thing I have to do: Let's say we have a Student ...
1
vote
2answers
361 views

SubSonic Outer Join

There seems to be a Bug with the Outer Join statement in SubSonic 3, or maybe it's just my ignorance, but the following craps out: var Objeto = from t in Table1.All() join su in ...
0
votes
1answer
546 views

LINQ update on joined collections

How do I use LINQ to update objects in one list from objects in a second list? My question is very similar to http://stackoverflow.com/questions/709560/linq-in-line-property-update-during-join except ...
2
votes
4answers
5k views

Linq to entities Left Join

I want to achieve the following in Linq to Entities: Get all Enquires that have no Application or the Application has a status != 4 (Completed) select e.* from Enquiry enq left outer join ...
60
votes
4answers
53k views

LINQ to SQL - Left Outer Join with multiple join conditions

I have the following SQL, which I am trying to translate to LINQ: SELECT f.value FROM period as p LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17 WHERE p.companyid = 100 I have ...
0
votes
1answer
3k views

SQL Query Conversion to LINQ Left Outer Join (VB.NET)

I've looked all around and spent way to long trying to convert this SQL statement into a Linq statement in VB. I'm sure it would be a good example for others out there - the statement is trying to ...
1
vote
4answers
863 views

Too many outer joins in LINQtoSQL generated SQL

I have a question about a SQL statement generated by a LINQ2SQL query. I have two database tables (VisibleForDepartmentId is a foreign key): AssignableObject Department ...
9
votes
3answers
18k views

Linq Sub-Select

How do I write a sub-select in LINQ. If I have a list of customers and a list of orders I want all the customers that have no orders. This is my pseudo code attempt: var res = from c in ...
0
votes
3answers
933 views

Outer Joins and Linq

So I have the following code: return from a in DBContext.Acts join artist in DBContext.Artists on a.ArtistID equals artist.ID into art from artist in art.DefaultIfEmpty() ...