Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
123 views

Is there a LINQ syntax for the (T, int) overloads of Where and Select?

The query var q = from elem in collection where someCondition(elem) select elem; translates to var q = collection.Where(elem => someCondition(elem)); Is there a LINQ syntax ...
3
votes
1answer
50 views

F# LINQ lastOrDefault unix Epoch

I am learning LINQ with F#. I want to know how to use lastOrDefault. If I have a SQL Server data table called Days, which store some date, I want to write a query to select the last date of the table, ...
3
votes
3answers
167 views

help with a two table linq query

I want to display categories and subcategories like so: Category 1 Subcategory 1 Subcategory 2 Subcategory 3 Category 2 Subcategory 5 Subcategory 6 Subcategory 7 In other words, foreach ...
3
votes
7answers
3k views

What is the difference between LINQ query expressions and extension methods

Below are two queries that return the same data. Other then style I am not sure which is better. What factors influence these queries? What are the benefits of using one style over the other? ...
2
votes
1answer
103 views

LINQ query expressions and extension methods

How to make this expression using the methods of exptension, but (!) not using anonymous types? from p in posts join u in context.oxite_Users on p.CreatorUserID equals u.UserID ...
1
vote
2answers
58 views

error when anonymous type is used in join query in LINQ

I start learning LINQ these days. I got an error when I try to return an anonymous type in join query. And I don't understand why I get this error. Here is my coding. List<Student> students = ...
1
vote
2answers
573 views

MS CRM QueryExpression ConditionExpression w/ CRMBoolean type

I'm using Microsoft's CRM software (4.0) and I'm trying to build a query expression. It works fine with querying only String values, but now I need to include a field that is of type CRMBoolean. I ...
1
vote
2answers
207 views

OSLO, ANTLR or other parser grammar, for parsing QUERY EXPRESSION

Greetings I'm working on a project that requires me to write queries in text form, then convert them to some easily processed nodes to be processed by some abiguous repository. Of everything there, ...
0
votes
1answer
89 views

How to write QueryExpression for following query?

I am trying to write a plugin in dynamics crm 4.0. following is my fetch query which working fine. I tested on fetchxml Builder. but when I am trying to convert into QueryExpression it is not returing ...
0
votes
3answers
329 views

LINQ query expression translator?

I'm adding a LINQ interface to some custom objects, but the C# compiler fails on type inference. However, I can write the equivalent query using the raw extension methods and type inference succeeds, ...
0
votes
5answers
141 views

Can a single LINQ Query Expression be framed in this scenario?

I am facing a scenario where I have to filter a single object based on many objects. For sake of example, I have a Grocery object which comprises of both Fruit and Vegetable properties. Then I have ...