0
votes
Is it bad to “think” in LINQ when the skill isn’t transferrable outside C#?
I find that understanding the logic behind it helps me feel better about using LINQ extension methods. If you can write your own Where or Group ..etc extension methods then there is no shame in usi …
1
vote
Linq query with left join and group
I am not sure which table cena and servis are coming from but to create grouped sum you do something like.
select new { Sum = grouped.Sum( x => x.cena ) }
and …
4
votes
Convert or map a list of class to another list of class by using Lambda or LINQ?
If the two types are different, you would use the same Select to map to the new list.
list2 = list1.Select( x => new MyData2()
{
…
0
votes
Automatically Compile Linq Queries
Since nobody is attempting, I'll give it a shot. Maybe we can both work this out somehow. Here is my attempt at this.
I set this up using a dictionary, I am also not using DataContext altho …
2
votes
Adding an item to a bound WPF ListBox
You are doing everything right, you jus need to use ObservableCollection. This will notify the ListBox about any c …
2
votes
LINQ Keyword search with orderby relevance based on count (LINQ to SQL)
If I understand you correctly you want to call OrderyByDescending( p => p.Body ) but it should be ordered by how many times a certain word appreas in p.Body ?
Then you shoul …
1
vote
Replacing nested foreach with LINQ; modify and update a property deep within
var dirtyAddresses = company.internalData.Emps.SelectMany( x => x.privateData.Addresses )
.SelectMany(y => y.Items)
…
1
vote
LINQ: Get first character of each string in an array
string[] someName = new string[] { "First", "MiddleName", "LastName" };
String initials = String.Join(".",someName.Select(x => x[0].ToString()).ToArray());
Produces …
15
votes
6
votes
How to get a custom object out of a List<> with LINQ?
Where returns an IEnumerable not a single result and using as doesn't throw an exception and just casts it to null, you need to use SingleOrDefaul …
0
votes
Possible to group by Count in LINQ?
you can do something like this...
List<int> integers = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
var p = integers.Select((x, index) => new { Num = index / 2, …
3
votes
Empty Sequence in LINQ
You can use this when you want to quickly create an IEnumerable<T> this way you don't have to create a reference to a new List<T> and take advantage of the …
0
votes
LinqToSql query that spans a many-to-many relation?
Something like this perhaps
var contentIds = from c in Content
join tc in TagContent on c.Id equals tc.ContentId
join t in Tag on tc.TagId …
2
votes
Trying to convert xml to a dictionary
Specify what you want for Key and what for Value.
var myDict = myXmlDoc.Elements()
.ToDictionary( key => key.Name, val => val.Value);
…
0
votes
Linq - how to combine two enumerables
There is no support for this Select method using LINQ Query Expressions. Just out of curiosity why do you want to rewrite it?
…
