Tagged Questions
The selectmany tag has no wiki summary.
24
votes
4answers
6k views
Difference Between Select and SelectMany
I've been searching the difference between those two but I couldn't find actually what I want. I need learn the difference when using LINQ To SQL but they all gave me standard array examples.
Can ...
8
votes
2answers
3k views
How C# Compiler choose SelectMany when translating LINQ expression?
There are 4 overloaded signatures for Enumerable.SelectMany. To make it simple, we ignore the two signatures with int argument. So we have 2 signatures for SelectMany:
public static ...
5
votes
1answer
129 views
Using LINQ to iterate combinations [closed]
Possible Duplicate:
Generating all Possible Combinations
Is there a good LINQ way to do a cartesian product?
How to generate combination of N elements with limited supply of 2 each without ...
5
votes
4answers
677 views
F# List SelectMany
This is quite simple question but I didn't find an answer:
Is there any Seq/List operation in F# to match the LINQ SelectMany?
I know I can use System.Linq in F# if I
want to.
I know I can make a ...
3
votes
2answers
194 views
LINQ - get total count of values from nested list
i have a Class:
public class Company
{
public int id { get; set; }
public string title { get; set; }
public string address { get; set; }
public string city { get; set; }
public ...
3
votes
2answers
298 views
Need to retrieve List of items containing subitems matched with another List
Situation:
I have some persons with certain skills and they can/might belong to more than one area.
The skills are linked in a seperate table, so are the areas.
I get the people list from selecting ...
2
votes
0answers
69 views
How to create C# LambdaExpression that returns anonymous type for SelectMany resultSelector
enter code hereI'm building a dynamic query that can have n of Where method calls and n of SelectMany calls dependent upon user input. For example I may have:
var qZ = entityContext.TableA
...
2
votes
1answer
131 views
Different behaviour between Join and SelectMany after replacing one of the sets
I hope that someone can shed a light on the (to me) unexpected behavioral difference between the two (result wise) equal queries.
A small program can be worth a thousand words, so here goes :
...
1
vote
0answers
23 views
How to add SelectMany to an Expression Tree with Expression.Call
How do I achive the same result as:
var q = db.TableA.AsQueryable();
var q1 = Queryable.SelectMany(q, a => a.TableB, (a, t) => new { a = a, t = t });
var q2 = Queryable.SelectMany(q1, a=> ...
1
vote
0answers
57 views
JSF - SelectManyCheckbox not saving
I'm trying to rebuild something similar as what can be found here:
http://i-proving.ca/space/Technologies/JSF/selectManyCheckbox
I have a class UserType and a Class Permission.
Class UserType has a ...
1
vote
1answer
105 views
Need a little help with SelectMany
Suppose, I have an IEnumerable<Tuple<string, object>> and that I want to replace for each element of the enumeration the first element by a list of (several) other elements:
Original ...
1
vote
1answer
145 views
Inverse IEnumerable.SelectMany?
Is there an inverse/complement of IEnumerable.SelectMany? That is, is there a method of the form IEnumerable<T>.InverseSelectMany(Func<IEnumerable<T>,T>) which will find a sequence ...
1
vote
0answers
180 views
How to get the h:selectManyListbox selected values from within a JSF converter?
I'm trying to populate a h:selectManyListbox with a list of objects, using a converter. I can easily convert each object to string in the getAsString(...) method, but I don't seem to find a clean ...
1
vote
2answers
2k views
How to dynamically refresh h:selectManyCheckbox selectItems
I am trying to implement a scenario using JSF. I have a commandExButton and when user click this button "A" it shows the panelDialog which contains the selectManyCheckBox items. I generat these items ...
1
vote
3answers
645 views
To call SelectMany dynamically in the way of System.Linq.Dynamic
In System.Linq.Dynamic, there are a few methods to form Select, Where and other Linq statements dynamically. But there is no for SelectMany.
The method for Select is as the following:
public ...
1
vote
4answers
396 views
SelectMany in Linq to entity
I was looking at some examples in microsoft site about linq and I see an example that I need to modify!
http://msdn.microsoft.com/en-us/vcsharp/aa336758.aspx#SelectManyCompoundfrom3
public void ...
0
votes
0answers
19 views
EF1 SelectMany() left join
Is it possible to use SelectMany() and have it behave like a left join?
I am trying to flatten an Entity Object into a tabular format so I can use it as a data source for an .rdlc report. The ...
0
votes
0answers
19 views
I need to create an Collections, List or Arrays of <tr:selectManyCheckbox> in JSF an MyFaces, can be DONE?
I to all!!!. I'm new here and need some help. I am doing an application using JSF and MyFaces, I need to create an array of components, but do not know if this is possible or not.
This is the code ...
0
votes
3answers
53 views
Can I get the access the skipped “parent” of SelectMany when using dotted syntax in Linq?
In query syntax I can write
var greendoorsWithRooms = from room in house.roooms
from door in room.doors
where door.Color = green
select new {d=door,r=room}
Is there a way I could achieve the same ...
0
votes
2answers
228 views
Left outer join with Linq Expressions
I'm trying to build left outer join queries with Linq Expressions but now I really hit the wall.
What I want to accomplish is the following query:
var q =
from i in ProcessInstances
join ...
0
votes
2answers
165 views
LINQ Select Many question
Can you use SelectMany in a query against your DB and if you can, what type does the column need to be in order to do this? I am messing around with LINQPad and anytime I try to use SelectMany I get ...
0
votes
0answers
113 views
Complex Linq.Dynamic queries
I am trying to figure out how to create some dynamic queries. I have looked at Linq.Dyanmic and it is missing some things that I think I may need.
My goal is to essential flatten the relational ...
0
votes
1answer
6k views
JSF f:selectItem in h:selectManyCheckbox not working in backing bean, but is displayed properly in h:dataTable
The problem occurs with this code:
<h:form>
<rich:panel>
<f:facet name="header">
<h:selectManyCheckbox title="Select which types of requests you want to ...