0
votes
1answer
18 views

Generating lambda expression - Type conversion Error

I have a generic method that filters a list of entities, filtering is done by generating lambda expressions: protected object initFilters<TEntity>(string targetEntity, List<SearchItem> ...
1
vote
1answer
52 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
26 views

Convert SQL to LINQ to Entities WHERE IN clause

How can I convert this sql statetment to LINQ to Entities? SQL Statement: Select * from Departments where DepartmentID in (Select DepartmentID from Employees where FirstName like '%FirstName%' or ...
-1
votes
0answers
31 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 ...
0
votes
3answers
43 views

Combining 2 linq queries - group and join

I have 2 separate tables in my Db for Customers and their related Ethnicity. The customers table holds foreign key Id for the ethnicity. I would like to create a Linq query that shows the total of ...
4
votes
1answer
118 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
23 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
1answer
69 views

SQL convert to LINQ to Entities

How do I convert this SQL statement to LINQ to Entities. I cant find a way to union the tables with WHERE clause SQL: Declare @DID int, @key varchar(50) SET @DID = 3 SET @key = '' SELECT TBL.GID, ...
0
votes
1answer
17 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 ...
-3
votes
0answers
39 views

Linq subquery returns a concat String

I need help with query of Linq. I have a query of Linq and any rows have a column of XX. XX is a indeterminate number of records of string concats. Example: From car in DataContext.CarTable ...
0
votes
1answer
22 views

Where Clause on Joined Table with Into Keyword

I wish to join two tables while filtering one of the tables. That works fine like var matching = from a in ctx.A join b in ctx.B on a.BId equals b.Id where ...
0
votes
1answer
37 views

Why is Linq query setting my Arithabort options to false?

I have code like this: using (var db = new MyDataContext()) { db.ExecuteStoreCommand("Set Arithabort on"); var q = AFairlyComplexQuery(db); // returns an IQueryable<> var result = ...
1
vote
1answer
27 views

How to efficiently build a “Get descendants” algorithm in linq-to-entities?

In a tree like the one below where each item knows only its parent id and order number, what would be a good way to query all descendants of Foo? 1: Foo 2: Child 3: Grandchild 1 4: Grandchild 2 ...
0
votes
3answers
33 views

how to avoid the member assignment in LINQ orderby/groupby

I have a query to return a count based on a condition var query = (from a in this.db.Servers where (a.Date >= fromDP.SelectedDate.Value && a.Date <= toDP.SelectedDate.Value) ...
0
votes
2answers
59 views

How to display the following result in WPF chart

In my WPF application, I have a following query to display the selected date range as 'Date' and total number of servers being processed on each day as 'Amount'. var query_1 = (this.db.Servers ...
0
votes
3answers
90 views

How to write the following query in LINQ

I have a sql query and would like to convert it into linq SELECT CAST([Date] AS DATE), COUNT([ID]) AS 'Amount of Systems' FROM [DemoDB].[dbo].[Servers] WHERE [ServerID] IN ('ServerX') AND [Type] ...
0
votes
1answer
41 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
2answers
68 views

Call is failing with null parameter

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

LINQ where clause throwing error with 2nd where

UPDATE Even doing a search on the contacts firstName or LastName causes issues: var contacts = ( from c in context.ContactSet join m in ...
1
vote
4answers
67 views

What return type do I make this method?

Ive got the following code that returns a set of results from the CRM and then I bind it to a dropDownList: var context = new XrmServiceContext(); var contacts1 = ( ...
0
votes
2answers
64 views

How to convert SQL query to LINQ with Orderby, Groupby

I am writing to write this SQL query in linq, but didnt work.. select [ProcessTime], Count([ID]) as 'amount of processes' from [DB].[dbo].[TableX] where [ID] in ('ServerX', 'ServerY') and [Type] ...
0
votes
3answers
86 views

LINQ query returns duplicate despite Distinct()

Ive got the following query that binds to a DropDownList; if (!Page.IsPostBack) { var branchTags = ( from t in context.ContactSet ...
1
vote
2answers
64 views

Indirection with linq : Change query expression “Select” according users parameters

I use a table "TLanguage" to record lable results of my site. I have 4 columns in this table: French, English, German and Spanish. In a MVC application I use this query: var req = (from TYP in ...
0
votes
1answer
50 views

How to get only the date value from DateTime and count it?

How to compare only the date from the DateTime using LINQ to Entities and then sum it with another query. I would like to achive the following - to count the number of Type having the value ...
1
vote
1answer
73 views

IEnumerable<T, int>, Arity and Generic Type Definitions

I have a class Counter that counts things by key. Simplified: public class Counter<T> { private Dictionary<T, int> counts; public void Increment(T key) { int current; ...
0
votes
1answer
24 views

How use LINQ to find entities where a list of sub entities contains another list

I have a complex object which contains 2 lists of more complex objects. The first object is as follows: public object1 { public string Name { get; set; } public virtual ...
1
vote
4answers
136 views

Dynamically add new lambda expressions to create a filter

I need to do some filtering on an ObjectSet to obtain the entities I need by doing this : query = this.ObjectSet.Where(x => x.TypeId == 3); // this is just an example; Later in the code (and ...
0
votes
4answers
123 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
70 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
38 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
48 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 { ...
1
vote
1answer
47 views

Linq to recurse through a hierarchy

I have a heirarchical data structure as follows. TABLE 1 id | Groupname | parentId TABLE 2 id | nodeName | parentId Table 1 parentId refers to table1 Id, and table2 parentId also refers to ...
-2
votes
1answer
27 views

TSQL statement in Linq to entities [closed]

What is the corresponding Linq to Entities expression for the tsql statement ? SELECT c.CouponID, c.ShopID, nearest.distance FROM Coupons C JOIN ( SELECT CouponID, MIN (dbo.DistanceBetween ...
-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, ...
0
votes
1answer
51 views

Mvc: Linq OrderBy custom parameter

I have the next linq query public IEnumerable<Table> GetTablePage(int pageNumber, int pageSize, string searchCriteria) { Entities db = new Entities(); if (pageNumber < 1) { ...
1
vote
1answer
36 views

LINQ to Entities query and Distinct on GUID

When I use the LINQ to Entities and then a Distinct to get unique Guids, I'm getting all GUIDs. DB-Entry 1: {b3f86f18-f661-4511-a8b5-f85aa8e41b29} DB-Entry 2: {b3f86f18-f661-4511-a8b5-f85aa8e41b29} ...
1
vote
1answer
88 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
45 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
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 ...
1
vote
2answers
99 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 ...
1
vote
5answers
65 views

How to Copy Common properties List<x> to List<y>

how to copy list to another list class x and class y both have several common properties want to copy common properties to another list ,suppose x to y Have two list one to copy one list content ...
0
votes
2answers
51 views

Linq union list (property) of a list of objects

I have two classes, Person and Group class Person { public virtual ICollection<Group> GroupsWhereIAmMember { get; set; } public virtual ICollection<Group> GroupsWhereIAmSender { ...
3
votes
1answer
100 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
83 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
2answers
26 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) ...
3
votes
3answers
72 views

Best way to check if value exists for a key in ILookup<string, string> using linq

ILookup<string, string> someList; Cricket Sachin Dravid Dhoni Football Beckham Ronaldo ...
0
votes
2answers
32 views

How to write some LINQ which excludes related records in a link table?

I have 2 tables Client ClientReport I need to write some LINQ that lists all Clients that are not in the ClientReport table ie I need to list all Clients not associated with a particular report. ...
0
votes
1answer
128 views

How to query with Linq to Entities with a group by and two counts

I need help with a query. I want to return a list of entities and for each entities, I need two counts. With entities generated from thoses tables : /****** Objet : Table [dbo].[Messages] ...
1
vote
1answer
39 views

How do I call a method from within a linq query that is retrieving from an Entity Framework model

I have the following code return (_entities.Users.Select(profile => new ProfileUserListItemDto { Email = profile.Email, FirstName = ...

1 2 3 4 5 31