Tagged Questions
-1
votes
1answer
34 views
Linq Multiple OR with a list
I'm currently working on a C# project where I'm using LINQ.
I was wondering if it was possible to make a "multiple OR clause" with Linq with a list as an entry for the where.
I mean something like ...
1
vote
1answer
37 views
Selecting all objects from a list that return true on a member function, as a list?
I'm new to LINQ and trying to get a hold of it.
It's been useful so far for various things such as cutting down the code required, like when using .ForEach() to run a function on every object.
Now ...
0
votes
3answers
41 views
How to sort List<Point> [duplicate]
I have this variable:
List<Points> pointsOfList;
it's contain unsorted points( (x,y) - coordinates);
My question how can I sort the points in list by X descending.
for example:
I have ...
-4
votes
1answer
58 views
C# Joining 3 Lists with Linq [closed]
I want to join 3 Lists that have the following format:
List1:
CountryID | CountryData | regionUID
===================================
12 | Has good gras | 4567
12 | nice ...
1
vote
2answers
44 views
How can I reference an List<string> object's position index without searching for first occurrence?
I am trying to create an XML document using Linq and need to reference the index within a list of each object. At the moment all I can find is the IndexOf(s) method which just returns the first ...
-5
votes
2answers
73 views
Check if Dictonary<string,object> exists in List<Dictionary<string,object>>? [closed]
I have a List that is defined as:
List<Dictionary<string,object>>()
This List gets populated in a foreach loop and basically contains property names and values from ProperyInfo.
In ...
-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 ...
0
votes
2answers
73 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 ...
3
votes
2answers
89 views
Rearrange a list based on given order in c#
I have a list as follows:
{CT, MA, VA, NY}
I submit this list to a function and I get the optimum waypoint order list
{2,0,1,3}
Now I have to rearrange the list as per the order that is newly ...
-2
votes
3answers
98 views
How to compare 2 list by characters content and its correspondents double values?
I have 2 lists: a string list and a double list with same length and with same index of correspondence. I need to compare all the strings, find the indexes of the list that has the same characters, ...
1
vote
2answers
49 views
How can I extract a list of Tuple from a specific table with Entity Framework / LINQ?
I need to extract a list of couple 'ID'/'Name' from a large table in C# .NET with Entity Framework.
I try this request :
List<Tuple<int, string>> list = (from res in db.Resource
...
1
vote
2answers
89 views
Linq, select differences between two lists, select same between same list, and select duplicates same list
I want to know if it's possible in LINQ to achieve something along the lines of:
newList: { [1], [2] }
oldList: { [2], [3], [4], [5] }
resultantList = { [1], [2, 2], [3], [4], [5] }
Ok that was an ...
1
vote
2answers
64 views
Create one List from several different lists of the same type with C#
I am working on a asp.net mvc 3 application. I am using LINQ to fetch data from the database :
public object GetFieldsForDocument()
{
DocumentFieldsRepository.Context = ...
0
votes
1answer
112 views
“Expression cannot contain lambda expressions” - Exception [duplicate]
I tried to select and split a list from list of object like this :
GlobalV.LatestNews.Select(x => x.Source.Split('/').ToList().FindLast(y=> y!="")).ToList();
but I got an exception in ...
3
votes
3answers
32 views
How to store and lookup data, based on multiple xml attributes?
I am querying an xml file and returning 3 attributes per selection (each entry that meets my criteria will return 3 attributes details). I need to store these values, and then later look up the first ...
1
vote
0answers
56 views
How to exclude already existing items from dropdownlist? The values are populated based on some condition in xml
In my web application project I have a LinkButton and when clicking it a popup page AddControlsPopup.aspx will come .
On this page I have to fill ddlValues Dropdownlist from xml with some ...
1
vote
1answer
36 views
LINQ Group By along with percent of list that contains element
Example is probably the easiest way to explain:
{1,2,2,3}
becomes
{
{1,0.25}
{2,0.5}
{3,0.25}
}
I'm thinking I'd do the inner pairs using a simple struct. I understand using GroupBy ...
1
vote
3answers
41 views
Convenient way to drop empty strings from a collection
I am looking for a convenient way to drop list items with empty string as their value.
I know I could check each string to see if it is empty before loading into the list.
List<string> items = ...
-1
votes
4answers
99 views
How can I move next/previous in List using LINQ?
I have this class :
public class City
{
public City()
{
//
// TODO: Add constructor logic here
//
}
public int Id { get; set; }
public string Title { get; ...
1
vote
1answer
69 views
using LINQ to get the top N percent of a list [duplicate]
I have been trying to find a way for LINQ to be able to select the top n% of a given list. The closest I have been able to get is the take statement which works similarly to the TOP PERCENT SQL ...
-2
votes
3answers
112 views
Split a List<String> into sublists based on length of string using LINQ
Pretty self explanatory...
This:
{"hello","this","is","an","example","string"}
Would return:
{
{"is","an"},
{"this"},
{"hello"},
{"string"},
{"example"}
}
1
vote
1answer
107 views
populate array list from For loop using entire database table row
I am trying check my Events table for DateTime overlaps in each of the events. I have written code that will allow a user to input a Module_code. This Module_code is checked against the entries in ...
3
votes
1answer
92 views
List.Orderby in C# first orderby numbers that are even asc then same number that are odd decending
So I have a List that is called myDeliverable
myDeliverable contains an object called Buyer.
Buyer has a string street and a int housenumber
Now I want to order first by street alphabetically, ...
4
votes
5answers
150 views
Process List Using LINQ?
In my c# MVC4 application, I have a list of strings. Each odd element in the list is a datetime. The even element before each of them is a unique identifier.
For instance:
[0] is A7M0066
[1] is ...
0
votes
2answers
150 views
LINQ FirstOrDefault test for null
Word1252_7bit is a struct
Key is Int32
How can I test for null if value is not found?
There is no w.Key == -1 but I don't know test for not value returned.
The last Debug line throws an exception.
...
0
votes
1answer
63 views
Order by string compared to string list
I'm attempting to order some data using a certain pattern and need some help figuring out how to do so. I haven't seen any examples of using linq queries within an orderby clause and am not exactly ...
3
votes
4answers
93 views
Is it possible to do list manipulation using LINQ?
This may be a stupid question but I've always used linq to select items.
But i wish to know if it possible to do the following simple task using its keywords.
List<OrdersInfo> ordersList
.
.
.
...
0
votes
1answer
76 views
LINQ not working
I’ve a class as :-
Class EmployeesList
{
public string Category{get;set;}
public string Name{get;set;}
}
And a list<EmployeesList> as ListOfEmployee :-
Category = “AA” Name= “A”
...
1
vote
4answers
115 views
compare different type of list in c#
i have two list one is string list and other one is list of one class.that class contain some properties like soid,itemname,qty etc and its value also..string list and class list have some common ...
0
votes
2answers
71 views
Distinct Types from a generic Collection
I have a list of objects
List<Animals> animals
I'm trying to access every distinct Type of animal inside animals (e.g. Dog, Cat, Walrus) and get it into another generic collection using this ...
7
votes
7answers
246 views
How to use “Contain” in List?
I have country database likes ,
Country
-------
England
Germany
Italy
...
I get this data source as ,
DB.Countries.ToList();
What I want to do is to check new added country is already exists ...
4
votes
1answer
46 views
Moving a list of ints to the front of a list
I have a List of Int64 (List A) that needs to moved infront of another List (Int64) (List B).
List B will ALWAYS contain the numbers from List A.
So say the List A has the following numbers:
1, 4, ...
0
votes
1answer
51 views
c# Removing an object from list based on 2 variables
I'm trying to remove an object from a list, First I need to get all the entries in it with the id == 0(for now) and then remove the first entry. At the moment I'm trying:
coursework.Where( x => ...
1
vote
3answers
71 views
Linq statement for returning next ID
I have list of Books with PK of Id and some of Books may deleted.
for example list with this Ids:
1 2 5 6 8
now I need a linq statement to return next insertion Id (in example "3")
I tried this ...
4
votes
3answers
143 views
Search for an Array or List in a List
Have
List<byte> lbyte
Have
byte[] searchBytes
How can I search lbyte for not just a single byte but for the index of the searchBytes?
E.G.
Int32 index = ...
3
votes
2answers
87 views
Convert Dictionary<string, List<object>> to List<Dictionary<string, object> in LINQ
How to convert Dictionary<string, List<object>> to List<Dictionary<string, object> in LINQ? I am doing it using for loop, any way to do it in a compact way?
Dictionary<string, ...
0
votes
4answers
113 views
How to compare two List content data and return mismatch value? [duplicate]
I have two List. Which content simple string values. As example:
IList1 content:
The Avengers
Shutter Island
Inception
The Dark Knight Rises
List2 content:
The Avengers
Shutter Island
Inception
...
1
vote
1answer
59 views
C# LINQ Take limited results per grouped
I have list that includes class named 'ID', 'Name' and 'Category'. There are 6 item in list.
List<MyData> list =
{
{0, "John", "Police"},
{1,"Michael", "Police"},
{2,"Alice", ...
0
votes
2answers
58 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 { ...
1
vote
2answers
58 views
select n records from nth record in linq
I am searching for something like LIMIT(10, 10) <- thats how it works in php
Products = Products.Take(10).ToList();
That's not what i want because i want to take 10 records starting at the 10th ...
1
vote
2answers
98 views
Remove duplicates of a List, selecting by a property value in C#?
I have a list of objects that I need some duplicates removed from. We consider them duplicates if they have the same Id and prefer the one whose booleanValue is false. Here's what I have so far:
...
0
votes
3answers
80 views
Returning LINQ row results to Array or List
I have a LINQ query whom i want to return its rows.
the perferred output would be a list of the rows, or an array.
var Cases = from q in db.Cases
where q.Company == Company
...
5
votes
3answers
122 views
Check if a list of integers increments by one
Is there a way, with LINQ, to check if a list of integers are "sequential" - ie 1,2,3,4,5 or 14,15,16,17,18?
2
votes
2answers
156 views
What is the fastest non-LINQ algorithm to 'pair up' matching items from multiple separate lists?
IMPORTANT NOTE
To the people who flagged this as a duplicate, please understand we do NOT want a LINQ-based solution. Our real-world example has several original lists in the tens-of-thousands range ...
0
votes
1answer
46 views
ToDictionnary() from List in C# [closed]
I want to use linq to get Dictionnary from a List in c# i use this code
List<Jointure> lj = table.jointures.GetJointures(Visibilites.Liste, false)
.ConvertAll(o => ...
2
votes
2answers
139 views
Select a matching string randomly from a list using LINQ
Say I have List<string> FontStyle containing the following
"a0.png",
"b0.png",
"b1.png",
"b2.png",
"b3.png",
"c0.png",
"c1.png",
...
3
votes
3answers
223 views
Linq filter List<string> where it contains a string value from another List<string>
I have 2 List objects (simplified):
var fileList = Directory.EnumerateFiles(baseSourceFolderStr, fileNameStartStr + "*", SearchOption.AllDirectories);
var filterList = new List<string>();
...
2
votes
2answers
76 views
linq operations on extended list class
I use linq operations on a Class (PersonCollection) which is extended from a List of objects called Person.
public class PersonCollection: List<Person>
{
//various functions
}
public ...
2
votes
6answers
182 views
How to find duplicate items in list<>?
I have:
List<string> list = new List<string>() { "a", "a", "b", "b", "r", "t" };
How can I get only "a","b"?
I tried to do like this:
List<string> list = new ...
0
votes
1answer
68 views
Query an XML using LINQ and excluding where an Attribute value is equal to that of an Element
I have a LINQ query against an XML, that gives me a list of nested lists, each sublist being a list of an elements("row") attributes.
var items = loadbodies.Descendants("row").Select(a => ...






