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

learn more… | top users | synonyms

0
votes
3answers
48 views

Using c# GetFiles Length but only count the files with certain amount of chars in filename

So i'm using the simple ImgFilesCount = ImgDirInfo.GetFiles("*.jpg").Length; to figure out how many files are in a dir. But I need it to only count files that have exactly 26 characters in the ...
0
votes
3answers
70 views

LINQ Replacement for Nested Array Iteration and Update?

I need some help with syntactic sugar. I have a ThisClass[3] and ThatClass[3]. public class ThisClass { public string Thing1; public string Thing2; public string Thing3; public string ...
0
votes
1answer
38 views

Second join statement incorrectly filtering records

I'm having trouble with a LINQ query where I am trying to join 3 tables, one of which acts as a filter. When I run the query with just one of the joins I get the expected number of records back but ...
2
votes
1answer
46 views

Only primitive types or enumeration types are supported in this context

So I have this code: public int saleCount(List<Shift> shifts) { var query = ( from x in database.ItemSales where shifts.Any(y => y.ID == x.shiftID) ...
-2
votes
0answers
36 views

How to retreive the data from a listview to textbox? [closed]

protected void ListView1_ItemUpdating(object sender, ListViewUpdateEventArgs e) { var name = ListView1.Items[e.ItemIndex].FindControl("Student_NameTextBox") as TextBox; TextBox4.Text = ...
0
votes
0answers
30 views

LINQ left join with group by not working

I'm having a difficult time getting a LINQ query using a left join with grouping to work. The following gives me a null dataset where it should not: Dim SiebelNonExistPDP = From PLI In ProdBase _ ...
3
votes
4answers
99 views

Can I use a TryParse inside Linq Comparable?

A sort of: Documenti = Documenti .OrderBy(o => string.IsNullOrEmpty(o.Note)) .ThenBy(o => Int32.TryParse(o.Note)) .ToList(); That will "ignore" (not order, putting at the end) if ...
3
votes
3answers
63 views

Pairing Collections in Linq without a For Loop

I have two collections int[] numbers = {5, 2, 1, 5}; string[] words = {"flibble", "bobble", "double", "dumble"}; I want to use a linq expression on the second collection using the first. Using a ...
-5
votes
0answers
80 views

Query List<List<>> [closed]

I have a List<List<FileProperties>> I need to query the List<FileProperty> to extract the List<List<FileProperty>> values where the FileProperty = <some Value> and ...
-1
votes
1answer
31 views

Linq how to sort and select Distinc in the same line

I appreciate your indication about how to sort on the same line the next instruction. Thank you very much! this.ProductosUnicos = this.repository.TemperatureReports.AsEnumerable().Select(tt => ...
0
votes
2answers
42 views

Child Nodes in XML File

I am trying to get the child nodes in my xml file and print it out..however i cannot. It is just printing one element instead of all. please help. XDocument doc = ...
0
votes
1answer
71 views

How to call a c# method when working with LINQ to NHibernate?

How to call a c# method when working with LINQ to NHibernate? The below code fails: List<UriTemplate> result1 = (from uriTemplate in this.SessionFactory.Session.Query<UriTemplate>() ...
1
vote
3answers
51 views

Get nodes from XML using LINQ in C#

My code is as follows: XDocument xmlDoc = XDocument.Load("myXML.xml"); var data = from items in xmlDoc.Root.Elements("category") where items.Attribute("value").Value == ...
1
vote
2answers
41 views

Get Value from XML

Best way to get the URL from that string? string text = @"<INMobileCRMConfig> <WebserviceURL> https://179.18.0.30:8200/INPhone/INPhoneMessages/ ...
0
votes
1answer
33 views

Need some help on a somewhat complex LINQ query

I have this query that does what I want which is to return true if any of the materials is comparable in the material groups list. mgroup.MaterialGroups.Select(x => x.Materials ...
0
votes
1answer
29 views

Linq query to sum values from tables

I have a LINQ query, which takes an invoice, looks up the quantity and unit price of each item attached, and in another linked table, looks up any payments made against the invoice. Currently this ...
1
vote
2answers
39 views

Grouping and ordering a list using LINQ

I have a message structure that contains the following DateTime dateIn; long? messageId; string messageContent; I am trying to group my message list based on messageId and ordered by the dateIn ...
0
votes
3answers
71 views

LINQ to remove certain elements from a IList<T> based on a IList<int>

How to use LINQ to remove certain elements from a IList based on another IList. I need to remove records from list1 where ID is present in list2. Below is the code sample, class DTO { Prop int ...
-2
votes
4answers
89 views

Find elements in a list that, together add up to a target number

Suppose I have a list: List<int> _arr = new List<int> {1, 3, 4}; And a target of 4 I want to return {1, 3} as 1 + 3 = 4 and {4} as 4 = 4 using linq from the given list. How do I do ...
1
vote
2answers
69 views

ASP.NET how to get the currently logged in users name and ID from a SQL database

I am currently still a junior programmer and have taken over from a previous programmer and i am busy carrying on with his ASP.NET website. He has created his own login and i cant figure out how to ...
0
votes
2answers
44 views

Initializing/Adding fixed entries on table creation

I am using Entity Framework code first, and I have two tables that need to be initialized with fixed entries just on table creation. For example: Columns for table A: -Id -Name Columns for table ...
5
votes
2answers
89 views

LINQ: Split list into groups according to weight/size

I've many examples using LINQ how to divide a list into sub-list according to max items in each list. But In this case I'm interested in diving a sub-lists using sizemb as a weight - having a max ...
0
votes
1answer
37 views

NHibernate query throws exception, when looking by related table

I have pretty simple linq expression: session.Query<Order>().Where(x => x.States.OrderByDescending(z => z.Date).FirstOrDefault().Name == "2").ToList(); Result: InvalidCastException ...
-1
votes
3answers
86 views

Remove object from List<object> when List contain the same object without creating new list

I have var a = new object(); var b = new object(); var c = new object(); var d = new object(); var e = new object(); var list = new List<object> {a, b, c, d, e, a, d}; Then I need to ...
0
votes
2answers
76 views

Cannot implicitly convert type 'List<AnonymousType#1>' to 'IEnumerable<Models.APPLICANT>'

Trying To Left Join 2 Tables public IEnumerable<APPLICANT> GetApplicant() { IEnumerable<APPLICANT> applicantdata = Cache.Get("applicants") as ...
1
vote
5answers
68 views

Assign IEnumerable list inside linq query

I'm having an issue with following linq query. public class Address { public int addressID { get; set; } public string address { get; set; } } public class AdvanceClient ...
0
votes
0answers
30 views

SQL to Linq (order and group by hour interval)

I had a SQL needed to convert into Linq, looked everywhere still failed. please help me out SELECT hour(recordoriginaldata.StartRecordTime) as hour, sum(recordoriginaldata.RecordLength) as ...
0
votes
4answers
85 views

SQL search between commas

I am working on a requirement to search for words that appear only between two commas within a string. So for example, in my database, I have the following data: ...
0
votes
2answers
44 views

Expression.Equal - How to Compare Nullable and Non Nullable fields?

I have a nullable datetime field and I have to convert the string date field to a nullable datetime type (using Expression)....I did this using the below. ...
1
vote
0answers
56 views

ASP.NET MVC 3 C# How can i fetch the data where i can post all the details that doesnt contain profile_id

what can i add a statement where i can get also the one where Applicant context is not contain profile_id or when the profile_id is NULL so i can get all the data . Heres my code : var applicantList ...
0
votes
1answer
37 views

SubmitChanges won't work

I've been searching for a solution to this for way too long and I would really like for this to work. I'm trying to submit to a database but the changes won't happen even though the entire function ...
0
votes
0answers
32 views

ASP.NET MVC3/Linq: Make multiple related rows' fields in a 1-to-many relationship appear on same row through joining and saving to an Excel file

I've tried various things but can't seem to find a solution. I've created the following Action to automatically save information I get from my database (not completely, just a test with 2 fields ...
0
votes
2answers
42 views

Using custom methods or delegates in linq-sql statement

I am searching the land for an elegant, reusable solution to a problem that has been bothering me for ages. Thus, Say I have some business logic I use all over the site: (don't get held up as to how ...
0
votes
1answer
69 views

How do I convert a nested SQL select statement with multiple aggregate functions into LINQ?

I have a table where each row contains a team id, a user id and a boolean value indicating whether or not that user is a representative. Users can be representatives for more than one team and teams ...
0
votes
2answers
56 views

LINQ to Entities does not recognize the method 'System.String Concat(System.Object)' method,

I am getting LINQ to Entities does not recognize the method 'System.String Concat(System.Object)' method, and this method cannot be translated into a store expression. error when I am trying to ...
2
votes
3answers
57 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) { ...
-1
votes
1answer
41 views

How to get combine string list from list object? [closed]

I have list of location with ID and Name like public class Dim_Location { public int ID{ get; set; } public string LocationName{ get; set; } public string ClienId{ get; set; } } ...
1
vote
3answers
66 views

Casting derived class to base class using LINQ to Entities

I have two database tables, one to hold completed items and another to hold incomplete items. Both tables are identical in structure. There are some cases where I would like to quest just one of these ...
9
votes
1answer
142 views

Lambda Expressions and the || operator in Entity Framework

I was surprised that this code works: string category = null; Category Category = null; int categoryId = 0; var products = repository.Products .Where(p => category == null || p.CategoryID == ...
0
votes
0answers
37 views

Linq join with dictionary and value type key in xamarin ios

I have a Dictonary and a IEnumerable that I would like to join on Key and OtherThing.Id This works fine with a simple linq join on Xamarin Monodroid. Then we wanted to use our code in the IO's App. ...
0
votes
0answers
30 views

3rd join causing null result

I'm having a problem with a LINQ query where I'm trying to perform 3 left outer joins. My problem is the 3rd join is causing the result to be null where it should not. Any idea what's wrong with my ...
1
vote
1answer
46 views

Linq query to order by on multiple related data

Consider the below tables with the data Customers -> Orders -> Items Customers -> A B C Orders -> o1 - A, o2 - A, o3 - B, o4 - C OrderItems -> o1 - Item1, o1 - Item2, o2 - Item3, o3 ...
0
votes
1answer
19 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> ...
0
votes
2answers
71 views

Setting a property of an item in a list based on items in another list

Attention all list / LINQ lovers, I have a small challenge for you. I have two list: List<ObjectInfo> firstListObject; List<ObjectInfo> secondListObject; The first list is a list that ...
-4
votes
2answers
47 views

property is used class linq [closed]

I would like to put data into class using LINQ. class Person public class Person { public int Id {get; set;} public string Name { get; set; } public List<string> Surname { get; ...
5
votes
4answers
216 views

Assigning values inside a LINQ Select?

I have the following query: drivers.Select(d => { d.id = 0; d.updated = DateTime.Now; return d; }).ToList(); drivers is a List which comes in with different id's and updated values, so I am ...
0
votes
0answers
18 views

What type of lock used by xDocument.load method at time of loading xml file?

I'm having application in VB.net which is using LINQ and try to save data on local machine which reduce performance. What I believe is that because of the sync. application constantly write data on ...
-2
votes
1answer
37 views

LINQ combined columns contain

I have three fields; first name, middle initial, and last name. How would I do a LINQ query to check if: x = query // i.e. john y = first name + " " + middle initial + " " last name // i.e. john a ...
0
votes
1answer
62 views

Where do I put session start code?

I am using MVC, C#, LINQ, Entity I need to put code for gathering active directory information every time a user visits a page. I need access to this code on any page they could visit to display ...
0
votes
0answers
14 views

FluentNHibernate get hierarchical data correctly c#

I am having trouble retrieving hierarchical data of categories and subcategories using FNH. This is how my CategoryModel looks like public class Category { public virtual long CategoryId ...

1 2 3 4 5 588