Tagged Questions

3
votes
2answers
264 views

Parent Child Relationships with Fluent NHibernate?

I would like to create a cascading tree/list of N number of children for a given parent, where a child can also become a parent. Given the following data structure: CountryType=1; ColorType=3; ...
2
votes
2answers
227 views

How do I find a subset of items in two sets of data that partially differ?

I am trying to get the subset of items in dataA that are in dataB, and have different values of property c. The properties a and b can be used as an index, so I have tried to filter out only the ...
0
votes
3answers
56 views

Concatenate an ISet using Aggregate

I am trying to use Concat() on multiple ISets to make one larger ISet. So I tried the following piece of code: public class Foo { private Dictionary<Bii, ISet<Faa>> items = new ...
0
votes
1answer
1k views

LINQ to Entities plus Set Theory: Unable to create a constant value of type 'ITextEntity'. Only primitive types ('such as Int32, String, and Guid')

I have a LINQ to Entities query (using EF 4) that has some pretty complicated set-based filtering going on. The code compiles just fine, but when I try to run it, I get the following error: Unable ...