Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
932 views

how to create a pivot table with dynamic column using linq tree expression

i'm writing an asp.net C# web application; i have an in-memory datatable named 'table1' having three columns 'country', 'productId' and 'productQuantity'; i want to pivot that table in order to obtain ...
0
votes
0answers
213 views

Transform SQL Query to a Linq to dataset expression

I'm new to LinQ technology and don't have big idea how to transform my SQL Query to a C# Linq to dataset expression. My SQL Query to be transformed SELECT dbo.comOrderDetail.productId, ...
0
votes
3answers
2k views

What exactly does the “Over” Clause in T-Sql do?

I'm starting to mess with ASP.NET MVC and came across the issue of wanting to do some basic Paging. So I used this simple Linq statement (using the Northwind Database) to get 10 items for a specific ...