Language Integrated Query (LINQ) is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages.

learn more… | top users | synonyms

-1
votes
2answers
20 views

How can GroupBy ILIST<>

I have a the following query but showing error. how can GroupBy ? IList<tbl_roadmapautomation> allproductdata = _context.tbl_roadmapautomation.GroupBy(p=>p.Stream).ToList(); Here ...
0
votes
1answer
39 views

Converting a SQL query to LINQ

How can we write below query's equivalent in LINQ ? SELECT <<Columns>> FROM <<SOME JOINS>> AND ISNULL(t.invoiceTypeID,0) NOT IN (2,3) ...
1
vote
1answer
48 views

Cannot convert from IEnumerable<List> to List

I am working on these lists to get an item that matches the selected item from the combobox. private void InitializaMessageElement() { if (_selectedTransactionWsName != null) { get a ...
1
vote
1answer
22 views

MVC4 Razor syntax one-to-many nested lists

I'd be very grateful if someone could point out what I'm doing wrong. I'm using MVC 4, database first with an edmx file, two simple tables trying to list a set of child results under a parent result. ...
2
votes
2answers
65 views

Get list of child records

I have a database that looks like this: tbl_Seminar ID isActive tbl_SeminarFees ID seminar_id -- foreign key fee_text I want to get all seminars that are active (isActive ==1) and ...
0
votes
0answers
28 views

Composite C1 How would I rewrite this Sql update statement to work in c#?

I have a piece of code in an image sortable grid which sends back a resulting string array of integers based on the user's new sort order for 'propid': { 'imgid': '4,2,3,5,6,7,8,9,1','propid':'391' ...
-2
votes
2answers
53 views

Linq SelectMany project to index

I have 2 different collections. pseudo code: // index string by int : Dictionary<int, string> index = { 0, "a" }, { 1, "b" }, { 2, "c" } // data : Dictionary<string, List<Data>> ...
-2
votes
0answers
26 views

Wizard control - complete step always show in a new page?

I hope you can solve my problem. I wanna when i click finish button (in Confirm step)...A summary information will show in Finished step..Please see my code: Thank for reading and have a nice day :) ...
1
vote
1answer
76 views

is it possible to get a left join list out a linq query

Lets say I have this reference setup public class Account { Guid ID {get;set;} string name {get;set} } public class Order { Guid ID {get;set;} } public class AccountOrder { Guid ID ...
0
votes
4answers
103 views

What is from keyword in linq?

Can somebody explain what from is used for in linq? In MySQL, from is used to specify the table. But I don't understand its use in linq. var artists = from a in context.Artists ...
0
votes
1answer
47 views

How can I get multiple data?

I can show just one customer, I know the problem is because I use FirstOrDefault in my LINQ. How can get another customer? I still don't understand the concept of IQueryable or IEnumerable. public ...
0
votes
1answer
26 views

How can I access XML inside a namespace using XML to LINQ

I have the following XML: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <feed xml:base="http://x.table.core.windows.net/" ...
0
votes
1answer
21 views

EF Computed column is null on LINQ query with multiple joins

I have an MVC app using Entity Framwork , there are many tables but one table has a calculated column. WHen I debug in my controller, the query results on "answers" does show that the computed ...
1
vote
0answers
20 views

Optimization problems with linq and searching within a groupby

I have a Collection 'Col': ID|Type|Type1|Type2|Count 1| a | a | b |2 1| b | a | b |1 2| d | b | d |2 2| b | b | d |2 3| x | y | x |0 3| y | y | x |1 I want to ...
0
votes
1answer
32 views

Linq/Entity Framework data context as a global variable in ASP.net application

I'm working with the ASP.net Web API for a simple REST api. I'm using Linq for my data access layer and was newing up a new linq datacontext for every api call. But it seemed a bit resource ...
0
votes
2answers
33 views

How to group a strongly typed model

I pass my model to my view. On this view I am displaying a table and trying to populate it with a list of information from the database. I am using asp.net-mvc, entity framework, razor, c# and LINQ ...
0
votes
4answers
43 views

Complex DTO and LINQ

class PeopleDTO { string Name { get; set; } List<AwardDTO> Awards { get; set; } } class AwardDTO { int AwardID {get; set; } string AwardName {get; set; } } I am trying to use ...
1
vote
0answers
34 views

Why isn't IReadOnlyList optimized with Linq? [closed]

Using a profiler, I have found that when calling the Linq extension method .Last() on an implementation of IReadOnlyList, GetEnumerator() and MoveNext() will be called until the end of the collection ...
1
vote
3answers
22 views

LINQ Where condition against datatable

I have a DataTable. I would like to filter DataRows where City = "Hongkong". How to apply LINQ against DataRow?
3
votes
2answers
26 views

Order parent object list by child list attribute

I want to sort an object list in C# by LINQ, I want to order this list by a child list with a certain attribute: The class structure based on nhibernate, all Attributes are public virtual. ...
0
votes
6answers
113 views

Easiest Way to Reorder a sequence

Consider 4 (say up to 100) instances of class A, in List which has an int property Order. a0.Order is 0 a1.Order is 1 a2.Order is 2 a3.Order is 3 Now the Order property needs to be changed so that ...
0
votes
2answers
10 views

Taking Desired Data From Xml

I have a sample XML Data as follows <?xml version="1.0" encoding="utf-8" ?> <Employees> <Employee> <EmpId>1</EmpId> <Name>Shawn</Name> ...
0
votes
1answer
23 views

Get textbox with values and Checked Checkboxes from formcollection MVC 4

I am new to MVC and feeling blindfolded. May be silly. I have form with 20 textboxes , checkboxes and few dropdowns. I want to get checked checkboxes, textbox with values and dropdowns that has ...
0
votes
2answers
33 views

LINQ How to get difference

I have two lists var items = new[] { "one", "two", "three" }; var items2 = new[] { "one" }; I would like to compare two list and get the items that are not available in items2.Basically need the ...
4
votes
2answers
33 views

How to write below sql query in linq c# where some of paramteres will be null sometimes

I have following query in sql, select * from dbo.WaitingLists where WaitingListTypeId in (1) or StakeBuyInId in (Select StakeBuyInId from dbo.WaitingLists where StakeBuyInId in (5) and ...
0
votes
2answers
31 views

LINQ FUNCTION TO RETURN LIST BUT COMPILER SAYS function doesn't return a value on all code path

hello experts need your help badly here is my code <WebMethod()> _ Public Function getlocationsbypro(searchtype As String, crime As String, proid As String, startdate As String, enddate As ...
-1
votes
1answer
71 views

linq query for searching lists [closed]

I have a List property of type string. I would like to search my database to make sure that the list matches the results. For example: List<string>strings = new ...
-3
votes
2answers
77 views

XML to Dictionary using LINQ [closed]

I'm new to LINQ, so thank you in advance for the help. I have this function below which takes in a class (consisting of a string(username) and class(USER)). The User Class is setup as follows. ...
0
votes
1answer
16 views

Getting sorted results based on count from database where 2 tables are involved with Link to SQL

I have the following Stored proc that I created which works fine outside my project. However I am running in to issues with actually calling it from my project. And getting the following error: ...
0
votes
1answer
39 views

Dictionary to XML using LINQ

So I have the function below that takes in a Dictionary and stores it into a XML file. static void DictionaryToXML(Dictionary<string,User> UserClassDict, string xmldoc) { ...
0
votes
2answers
33 views

How can I filter table and select rows which have parentid in id column

My table has tow columns id, parentid and I want to filter data to select rows which have parentid ( as there can be rows without parentid row). id parentid 1 null 2 1 3 1 4 2 5 10 I want ...
0
votes
2answers
28 views

LINQ: Guid Compare Ignore case

I want to check if a variable of type guid exist. I used new Db().JobCreate.Any(a => a.GuidVariable1.Equals(GuidVariable2, StringComparison.OrdinalIgnoreCase)); but I get the error Member ...
1
vote
1answer
27 views

XML to Dataset : How does one access a complex type within a node?

The XML file looks like this: <?xml version="1.0" encoding="utf-8"?> <ArrayOfCompany xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ...
1
vote
1answer
68 views

LINQ - Select a list of a class as fields of the class member

I have, for example, these classes: public class Person{ public string name, surname; public int age; public List<Aspect> aspect; } public class Aspect { public string key; ...
1
vote
3answers
47 views

LINQ to query result from XDocument

I have all the data elements stored from a resource file as follows: XDocument xDocTranslated = XDocument.Load(TranslatedFile); var resultTranslated = from item in xDocTranslated.Descendants("data") ...
0
votes
2answers
35 views

How/should I replace nested foreach with one linq query?

Trying to set a property on certain labels contained in a Windows Forms GroupBox, I wrote the loops below. This works fine, but I don't like it due to its (I think unnecessary) double foreach ...
0
votes
1answer
35 views

Foreach Loop to linq

This might be very simple but I am not able to see data after converting public void SearchGrid(int id, ObservableCollection<TestModel> msgField) { foreach (var c in msgField) ...
0
votes
1answer
89 views

Take Top(X) of each grouped item in LINQ

I'm trying to take the Top(X) recors for every unique item in a column. Example: Inspections InspectionId | RestaurauntName | InspectionDate ------------------------------------------------ 1 ...
7
votes
7answers
120 views

How do I order this list of site URLs in C#?

I have a list of site URLs, /node1 /node1/sub-node1 /node2 /node2/sub-node1 The list is given to me in a random order, I need to order it so the the top level is first, followed by sub-levels and ...
1
vote
1answer
23 views

Reading the result of LINQ and XDocument

I'm trying to parse a visual studio resource file that contains various translated strings like so: <data name="InvalidGroupType" xml:space="preserve"> <value>La sélection du type de ...
1
vote
3answers
79 views

How to filter same string from two arrays and display it only once

I have two tables in my database Server table - contains list of ServerID(string datatype), ServerID is the primary key Component table - contains list of Component names, ServerID is the foreign ...
0
votes
1answer
29 views

Integer Contains Using Linq

I'm having some difficulty writing a linq query that will check whether the consecutive digits in an integer are contained in the primary key of a table. So, suppose there is a table called Employees ...
3
votes
2answers
58 views

When to reuse data contexts

I've been reading a bit of confusing and conflicting advice on this. Given the following example methods: using(var db = new MainContext()) { var q = db.tblArcadeGames; foreach (var game in ...
0
votes
4answers
93 views

C# Not Rounding Double

When I pass this object back as JSON, it looks like this: 0.000000000000000e+000 My code in C# is: // get adjustments for user IEnumerable<Severity> existingSeverities = from s in ...
1
vote
1answer
27 views

DataTable and pivot table and filters

I have a DataTable like this: SELECT TOP 1000 [ID] ,[NameMachine] ,[Reparation] ,[Substitution] ,[DataIn] ,[DataOut] ,[Operator] ,[TypeOperation] ,[Note] ,[Department] FROM ...
2
votes
1answer
60 views

Transfor List to Nested Dictionary using linq C#

I have a list that contains data like this ID | START_DATE | END_DATE | Chapter | ID_OWNER 1 01/03/2013 05:15:14 01/03/2013 06:20:14 1 ...
0
votes
4answers
53 views

SQL expressions in EF using Lambda

I would like to know if something similar to this (linq to SQL) customers.Where(c => SqlMethods.Like(c.Name, "%john%")); is possible to do in Entity Framework. Preferably using lamba ...
0
votes
1answer
32 views

How to Convert sql server query to linq in entity framework

I am converting the sql server query to linq SELECT * FROM DataFlow where FlowDeleted = 0 and DataFlow.FlowVersionNumber = ( SELECT MAX(FlowVersionNumber) from DataFlow i where ...
-4
votes
2answers
47 views

which are the diffenent types of Exception occucerd in performing LINQ Operation? [closed]

I want some help related Exception.I don't know ,which are the different types of exception occurred when we perform LINQ operation. Here is the code: public IPagedList<Party> ...
1
vote
3answers
35 views

unable to access the linq to sql result in mvc4

I am getting result from theee tables usign linq to sql but i am unable to use the values in the view, how i can do that as i am new to mvc here is my controller code: public ActionResult Grid() { ...

1 2 3 4 5 604