0
votes
2answers
45 views

Left Outer Join using Entity Framework and Lambda Expressions

Employee id, name, datejoin, deptID and another table that is Marketing id, name, deptID What I am trying to do is search of deptID from Employee table in Marketing to see if it exists, if it ...
4
votes
2answers
70 views

How do I join with OR condition?

This is my LINQ code: from b in dbContext.SAPBillOfMaterials from t in dbContext.AUXComponentTypes where t.ParentId == b.Parent.Id && t.MaterialType == b.Component.MaterialType && ...
0
votes
2answers
31 views

Entity Framework piece together LINQ to Entity Queries

I need some help here. I am trying to make a portion of an EF Query reusable. var query = from sr in SomeEFRepository.SelectAll() select new { KeyValuePivotField1 = (from ...
2
votes
2answers
58 views

Entity Framework - “where” clause: entity id is in a potentially null array

I have an array of office ids, and the array is potentially null. I want the EF query to return all records if the officeIdsToSelect array is null, or only the matching records if it is not null. ...
1
vote
1answer
53 views

Entity framwork mutiple object relation

I have a table with 2 foreignkeys to the same parent table, Edge.StartStationId and Edge.EndStationId. I am trying to map theese to objets in entity framework, but can't find a workaround which seems ...
0
votes
2answers
56 views

How to cast back an object with a linq query inside it with more than 1 entity? [duplicate]

I have the following scenary, one linq query with a join statment: public Object getMGM(int MEB_Id) { var unitOfWork = new ...
-1
votes
0answers
33 views

Supporting Multiple SQL database versions for same application [closed]

I am in need to develop an application which can support multiple version of same SQL Server database. Database has been changing and it has currently 7 versions. Some of customers still using ...
4
votes
1answer
121 views

What's the better way to write this linq query?

SQL: SELECT node.CategoryId, node.CategoryName, node.Description, node.Lft, node.Rgt, node.ShowOnMenu, (COUNT(parent.CategoryName) - 1) AS Level, (CASE WHEN node.Lft = ...
0
votes
1answer
24 views

Linq to Entity - Inserting a record

I am new to Linq to Entity (Infact I am new to Linq) and I am struggling to insert a row. Following a number of tutorials (None of which seem to agree with each other or are very detailed) I managed ...
0
votes
2answers
31 views

How to write this Query in LINQ

I have one LINQ query with foreach loop. Everything is fine. But it takes more time to get the value. So anybody suggest me how can i do this in LINQ query itself. Code NormValue = ""; c = 0; var ...
0
votes
1answer
18 views

How would something similar to Telerik's WPF DataFilter Control work?

Telerik has the following control: http://www.telerik.com/products/wpf/datafilter.aspx Now this can apparently filter any collection. I haven't used it personally but I'm guessing you can create ...
1
vote
1answer
26 views

Can't fill my model with a grouped list of a table using LINQ

I'm working on a new project using .NET MVC4 and Entity Framework. I have a products table and i'm trying to select products with grouping. My model: public class Cart { public long Index { ...
0
votes
2answers
100 views

Dynamic Queries: Change table name in LINQ-to-Entities query

Long time lurker, recent newcomer. Been struggling a bit with queries with LINQ-to-Entities. I am using Visual Studio Express 2012 for Web and Entity Framework 4.0. Bear with me, it's a long ...
0
votes
1answer
22 views

MySQL Connector - LINQ to Entities does not recognize the method

in my [projest I'm using the MySQL Connector and Entity Framework. I have problem with the following code: int now = DateTime.Now.DayOfYear; var items = (from e in db.Table1 ...
0
votes
0answers
35 views

Including child entity ADO.net EF, LinqToEntities

I'm trying to get all my child entities to get loaded in the same query as the "master" table, instead of every property loads one by one. It's an ADO.net database model connected to SQL Server 2008. ...
0
votes
2answers
35 views

Linq to Entities, ViewModel - DateTime

I have a db table with a start date DateTime field (SQL Server). In my repository I have a "get all" method that returns all the columns. I also have a viewmodel with a DateTime Startdate field. ...
2
votes
1answer
72 views

Simple DbSet<TEntity>.Find() Call Taking Forever

I am getting terrible performance from a DbSet.Find() call. My code looks like this: public class Area { [Key] public string Id { get; protected set; } // ... } public class MyContext : ...
0
votes
1answer
42 views

LINQ to Entities error on ToList with a one-to-many attribute

Whenever I try to run the following code employees = from e in this.entities.employees select e; var ett = (from e in employees where ...
2
votes
0answers
59 views

EntityFramework Linq To Entities bitfield / boolean issue

I'm baffled as to why the following happens: The scenario is that within Stcoxrefs (which is a pure entity not a derived version) there are two bit fields. Using the following the int, char, varchar ...
2
votes
2answers
69 views

Call is failing with null parameter

I have the following code: public static ContactEventValue GetContactEventValue(ContactEventType contactEventType, string programCode, string brandCode) { AdvocacyEntities ent = ...
1
vote
0answers
43 views

How to join three different types on a same column

I need to write a join query for the below scenario. I know how to write joins when there are tables with PRIMARY Key and other table defined it as Foreign Key. But here the case is different. Please ...
0
votes
0answers
77 views

Entity Framework 4: Dynamic Proxy error on a seemingly simple query?

I have a Linq To Entities query I am making in my POCO Entity Framework application, that looks like this: var orders = stateRepository.Get() .OfType<OrderedState>() ...
0
votes
0answers
42 views

Dynamic linq query in EF

I am using dynamic linq query in EF4. Below code throws error: 'New' cannot be resolved into a valid type or function. var x = ent.OM_COMPANY.Where(qry).OrderBy("it.CM_CODE").Select("New(it.CM_CODE, ...
0
votes
4answers
134 views

Subquery in Where Clause of LINQ statement

So I tried to follow this example to have a sub-query in the where clause of this LINQ query. var innerquery = from app in context.applications select new { app.app_id }; ...
0
votes
1answer
74 views

Cross-Join Syntax in Entity Framework / IQueryable

I'm trying to deepen my education about IQueryable custom providers and expression trees. I'm interested in custom parsing a cross-join (viz. SelectMany), and I'm trying to understand if that is ...
0
votes
1answer
36 views

Insertion multiple records in the same objectContext

I'm having some trouble when I try to insert data using the same objectContext. My problem is, the order that the Entity read my code is not the order that I "Add" it. Example: EntityAB has ...
0
votes
1answer
44 views

Linq Statement between IList and datatable

I have a IList that i got after quering by linq to entities from one table. And by some other means i got a datatable as well that represent a table in database. ...
0
votes
1answer
53 views

Linq Issue dealing with null values in select

I have the following entities in my solution public class UtilityAccount : IObjectWithState { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid UtilityAccountID { ...
4
votes
0answers
78 views

Linq to entities: new Guid(“”) for anonymous type creation vs select

Following my previous question (Only parameterless constructors and initializers are supported in LINQ to Entities) I'm still having a question. I just want to understand what is going on and why ...
-1
votes
2answers
91 views

linq to EF, how to use 'top` method

I want to use linq to Entities to bring the top record ordered by descending column Value1. I know I ca write like: MyCollection.OrderByDescending(item => item.Value1).FirstOrDefault(); But how do ...
0
votes
1answer
37 views

Need to turn LINQ Query from Normal JOIN into RIGHT OUTER JOIN

I have the following query: var poll = entities.Polls.Join(entities.Descriptors, p => p.DescriptorID, q => q.ID, (p, q) => new { Poll = p, ...
1
vote
1answer
95 views

DataGridView rows are readOnly after setting its data-source to a Linq to entities query

I have this simple function that returns a list of employee outings Function LoadEmployees() As IQueryable Dim employeeList = From EMP In dbTables.tableOutings _ ...
1
vote
1answer
41 views

Entity Framework .Any does not generate expected SQL WHERE clause

Entity Framework and Linq-To-Entities are really giving me some headaches. I have a fairly simple query: var result = feed.FeedItems.Any(ei => ei.ServerId == "12345"); feed is a single EF entity ...
1
vote
1answer
133 views

Entity Framework Code First - select based on type of child TPH class

I am currently working with Entity Framework 4 on a project that is using Table Per Hierarchy to represent one set of classes using a single table. The way this works is that this table represents ...
1
vote
1answer
94 views

Get Dynamic OrderBy in Linq [duplicate]

I am using datatables in quite a few pages in my MVC 3 site - they use server side paging and now I want to implement sorting on the column headers. Datatables comes with iSortCol_0 which is an int ...
1
vote
3answers
47 views

How this linq execute?

Data = _db.ALLOCATION_D.OrderBy(a => a.ALLO_ID) .Skip(10) .Take(10) .ToList(); Let say I have 100000 rows in ALLOCATION_D ...
0
votes
2answers
38 views

Combine results from multiple queries to as single queryable

I want to search through a user database and order my results according to how precise the match is. Exact matches on a users name should appear in the result before single word matches, as an ...
0
votes
1answer
38 views

LINQ GroupBy to get Name and A Count

I'm a little confused on how to use a GroupBy in Linq. I need to display the name of a Product and Count it's offers, I've come up with this var context = new Model.Entities(); var query = from p in ...
0
votes
1answer
56 views

Displaying data in a view when foreign key equals primary key

I have two tables General_Info and Quantity. General_Info has a primary key QuoteID and has a one to many relationship with Quantity (FK = General_InfoQuotesID). In my details view I want to display a ...
1
vote
2answers
101 views

Unable to sort with property name in LINQ OrderBy

Error is LINQ to Entities does not recognize the method 'System.Object GetValue(System.Object, System.Object[])' method, and this method cannot be translated into a store expression. My ...
0
votes
1answer
46 views

Using multiple LINQ “Include” to get 2nd depth data

I have the following model (simplified) public partial class Fault { public int FaultID { get; set; } ... public virtual ICollection<FaultComment> FaultComments { get; set; } ...
1
vote
1answer
76 views

Predicatebuilder group and or queries with inner outer

I've got a pretty straightforward predicate builder query that works well. We have a list of keywords to search on, and we loop through those keywords to see if any of our object properties match up. ...
3
votes
1answer
102 views

How does this work? LINQ to Entities triggers loading of assemblies?

Projects in solution I have a typical 3-tier solution that targets .NET 4.5 and uses Entity Framework 6 Alpha 3. The solution is made up of three projects, let's call them: Entities - class library ...
-1
votes
1answer
87 views

Linq to Entities group by week number

I am using ASP.NET v4.5 and linq to entities I am trying to group my data by week using the below code var groupedByWeek = salesOrdersList .GroupBy(i => ...
0
votes
0answers
20 views

Why does LINQ to entities generate order by for every property?

I have a LINQ to Entities (4.3) query which returns an IQueryable of ProductWithSkus: public class ProductWithSkus { public Product Product { get; set; } public IEnumerable<Sku> Skus { ...
0
votes
0answers
28 views

Linq to Entities TargetInvocationException exception

On a very simple Linq to Entities query I just keep getting this exception: An exception of type 'System.Reflection.TargetInvocationException' occurred in System.Data.Entity.dll but was not ...
0
votes
2answers
27 views

Which defensive check is preferable when querying data using the Entity Framework?

Which of the following defensive checks is preferable when querying data using the Entity Framework? 1. The null check: user = users.SingleOrDefault(u => u.Email.Equals(email)); if(user == null) ...
0
votes
1answer
47 views

Linq to Entities query with array of WHERE conditions

How can I create an efficient Linq-to-Entities query when I have an array of parameters in a WHERE clause with OR condition? The array length can be anything. For example: from employees -> return ...
0
votes
1answer
44 views

Using Linq to select table items where they match a list

I have a dictionary of 'string, DeviceInfo' where DeviceInfo is a class containing a few properties as shown below: public string Name { get; set; } public string Id { get; set; } public ...
0
votes
1answer
41 views

Linq to Entities nested subqueries

I am fairly new to linq and am having a problem translating the following sql to linq: select c3.COURSE, c3.DESCR from (select c.courseprefix, MAX(c.coursesuffix) [coursesuffix] from ...

1 2 3 4 5 32