2
votes
3answers
36 views
How to get unique entries of products in a List<Order> with LINQ
I have a classic Order -> Order Row scenario something like this:
public class Order
{
public int Id { get; set; }
public string Name { get; set; }
public List<OrderRow> OrderRows …
1
vote
2answers
105 views
A better way to do this LINQ query?
I've got some collections of data objects that can't directly be accessed from one another. I imagine the best solution would be to get the database guys to make a query for this, but in the meantime, …
4
votes
1answer
56 views
Generic repository - IRepository<T> or IRepository
I have seen two different approaches for creating generic repositories. What are differences between those two approaches (pros and cons) ?
Please diregard difference in the methods because I am …
0
votes
1answer
26 views
Display SQL Server table in DataGridView
I think it's kind of noob question but I'm new to SQL Server in .NET and I've already lost several hours on this...
I started new project, inserted DataGridView on empty form and as Data Source I …
0
votes
4answers
24 views
LINQ Union with Constant Values
Hi;
Very primitive question but I am stuck (I guess being newbie). I have a function which is supposed to send me the list of companies : ALSO, I want the caller to be able to specify a top element …
4
votes
3answers
249 views
Haskell list comprehensions in C#
The following code is in Haskell. How would I write similar function in C#?
squareArea xs = [pi * r^2 | r <- xs]
Just to clarify... above code is a function, that takes as input a list …
0
votes
2answers
34 views
Linq Containsfunction problem
I use Ria Service domainservice for data query.
In My database, there is a table People with firstname, lastname. Then I use EF/RIA services for data processing.
Then I create a Filter ViewModel …
0
votes
3answers
112 views
How to perform 2 checks in LINQ Where
public List<SavedOption> GetValidSavedOptions(
List<Option> itemOptions,
List<SavedOption> savedOptions)
{
List<SavedOption> finalSavedOptions = …
0
votes
3answers
38 views
replace a simple forloop with linq
Hello everyone,
I want to know how to replace a simple foreach loop with linq. I'm not looking for answers about 2 or more loops....It's specifically for a single foreach loop..
List<string> …
0
votes
4answers
38 views
LINQ to XML: handling nodes that do not exist?
This may be a simple fix (well, it probably is) but for some reason I just can't figure it out.
So, I have some xml that looks something like this:
XElement xml = XElement.Parse (
@"<Alphabet>
…
1
vote
3answers
34 views
Converting conditionally built SQL where-clause into LINQ
So I didn't see a question here that really answers this question. It's kinda a newbie question about linq but I would like to know if it would be possible to convert the following sql query (built …
4
votes
2answers
64 views
Is NHibernate.Linq 1.0 GA Provider Production Ready
Is NHibernate.Linq 1.0 GA Provider Production Ready ?
-2
votes
4answers
70 views
Sorting by two columns with LINQ (Edited). Forget it! I’ll post the answer to make things clear.
Hi I have a list that looks like this:
val1 val2
r1 10 3
r2 5 5
r3 9 7
r4 4 1
r5 2 9
r6 1000 0
I need to get the row in which …
1
vote
1answer
32 views
How do I get LINQ to order according to culture?
Say I've got a list of strings with Swedish words: banan, äpple, apelsin, druva
Now I want to get this list ordered (keep in mind that this is a very simplified version of the real query):
var …
0
votes
4answers
42 views
How can I search into database with WPF and Linq-to-entities model
Hello,
I prepare a WPF project, where I want to implement a more complex search. I use LINQ to entities through the ADO.NET Entity model and plan to do the display in WPFToolkit DataGrid.
My search …
