Language Integrated Query (LINQ) is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages.
4
votes
2answers
39 views
OrderBy clause before Where clause - performance?
I'm trying to understand if there are any performance hit in using an OrderBy clause before Where clause like so:
List<string> names = new List<string> { //... };
var ns = ...
0
votes
1answer
39 views
Cross matching 2 collections using Linq .Any
I'm trying to cross match 2 collections against eachother using Linq. I have an array of characters corresponding to letters of the alphabet and I want to know if any string from a given collection ...
0
votes
1answer
14 views
Returning multiple resultsets with dataentity framework 5
I am using ef5 and am trying to return multiple result sets with the method GetNextResult<>() however it doesn't seem to be working.
My sql sproc is:
select * from Questions
select * from Skills
...
0
votes
2answers
19 views
Trying to write a delimited file using LINQ and XML, but can't make it work with strings
I'm very new to programming and I'm trying to get information from IMDB on a list of about 1500 movies. I found a website to get the data from in an XML file but I'm having trouble getting the data ...
0
votes
4answers
44 views
what is the right syntax for OrderByDescending with condition?
I would like to know what is the correct syntax for OrderByDescending with condition
I have the following code,
_mobileRepository.GetAllEpisodes().OrderByDescending(x => x.AirDate).ToList();
...
0
votes
1answer
25 views
Proving a set of requirements can be met with a set of values using LINQ
This is a subset of the question posted here.
Given a set of buckets of volume B={x1, x2, ..., xn} and a set of vials with liquid of volumes V={v1, v2, ..., vn } what is the best way to prove that ...
3
votes
2answers
29 views
How to get strongly-typed collection from XML using Linq
Here's a snippet from my XML file (I realize its format isn't ideal, but I unfortunately cannot change it):
<PRODMENUS>
<MENU id="90168" shortname="BrdSumPV13" mealname="Dinner" mealid="7" ...
-3
votes
1answer
37 views
TimeOut Linq Alter Web Config
How do I alter the TimeOut of Linq in my WebConfig file?
Is possible?
In code-behind I can write:
db.CommandTimeout = 3600;
Can this be done based on a WebConfig entry?
0
votes
0answers
16 views
Store and Retrieve Linq query From Session
I stored a query in session. As you know this query converted to object. i want use result of this query in somewhere and need to use WHERE on it.
var FacilityQuery = from O in db.Owners
...
2
votes
2answers
36 views
Resolving MemberChangeConflict with a specific value
I have a counter in SQL that needs to go down each time a user does an activity. At times the activity is fast and furious and I end up with a ChangeConflictException. This is fine, but when it ...
0
votes
1answer
35 views
Join vs Navigation property for sub lists in Entity Framework
I have a sql statement like this:
DECLARE @destinations table(destinationId int)
INSERT INTO @destinations
VALUES (414),(416)
SELECT *
FROM GroupOrder grp (NOLOCK)
JOIN ...
1
vote
0answers
24 views
NotSupportedException: Could not convert constant 1 expression to string
I'm manually building an Expression that uses IEnumerable.Where() to filter a DataServiceQuery from a WCF Data Service client-side proxy.
public class EntityIdentity
{
public EntityIdentity(long ...
0
votes
1answer
18 views
LINQ query with multiple joins throwing null reference error
I have a LINQ query with 3 joins and a grouping operation that is throwing a null reference error. In the below query (I'm sorry for the length) if you skip to the 'eDTK_PDP_Description' field, it's ...
1
vote
1answer
37 views
Check null result before accessing property or calling method
I would like to know if there is a better way or general rule to check null result before accessing property or calling method in C# Linq or lambda expressions. Thanks in advance.
At my ...
2
votes
2answers
53 views
sorting when name includes letters and numeric digits
I have following array
[0] = GB_22_T0001.jpg
[1] = GB_22_T0002.jpg
[2] = GB_22_T0003.jpg
[3] = GB_22_T0006.jpg
[4] = GB_22_T0007.jpg
[5] = GB_22_T0008.jpg
[6] = GB_22_T0009.jpg
[7] = GB_22_T00010.jpg
...
0
votes
0answers
17 views
Nhibernate - partial loading of bags using LINQ
I have this:
class Car:Entity { string Make { ... } ICollection<Wheel> Wheels { ... }
... tons of props ... }
class Wheel:Entity { Car Car { ... } int Number { ... } int Size { ... }
... ...
0
votes
2answers
20 views
Sort List of SelectListItem with LINQ
I'm trying to sort a List of SelectListItem with LINQ with no success.
For Each item In query
brandCategoryList.Add(New SelectListItem With {
.Text = ...
0
votes
1answer
26 views
Result consisted of more than one row when executing linq query against mysql database?
When I run the following query in VS2008 with EF 3.5, I get the error:
Result consisted of more than one row
var drivers = _context.Persons
.Where(x => x.client == ...
0
votes
2answers
73 views
Sum in Linq to Sql not returning a value
I'm looking for a query to return the sum of all payments against an invoice ID - however, if there are no payments noted, the query below returns null. Is there any way of it returning 0 instead of ...
0
votes
0answers
21 views
Report Builder Interactivity
I have a question .. i googled and still cannot find an answer. Maybe somebody can help me out. My staff is building reports in reports builder and inserting it into our asp.net application. We can ...
0
votes
1answer
9 views
wpf listbox to get selected value(s) using LINQ
I am new to LINQ. I would like to use it in my project using WPF. I have two listBoxes for each wpf page (ListBox1 in first wpf Page and ListBox2 in second wpf Page). I need to pass selected value(s) ...
0
votes
1answer
14 views
Linq Query with Join not working on .Net 3.5 but works on .Net 4+
My query was working in .Net 3.5 SP1 until I added a join. The join was put in place to allow selection from the Comments entity even when there was no associated User entity. I get the following ...
0
votes
1answer
54 views
GroupBy LINQ statement
I have a list of Questions that is grouped by Subject and Parent.
For example I would have
Subject 1
Parent 1
Question 1
Subject2
Parent2
Question2
Subject1
Parent2
Question3
Subject2
Parent2
...
0
votes
2answers
63 views
Unknown exception when updating values through entity framework?
I am getting an unknown exception, basicly the following code loops through only 2000 items but it takes a couple of minutes to hit the end opResult = uow.Commit(); and at that point it just says it ...
2
votes
3answers
45 views
Group rows in a datatable
I am interested in grouping some rows in a datatable after 2 columns and save the results in another datatable. I have the following code for grouping the rows:
var result = from t in ...
0
votes
1answer
34 views
Get data from a dynamic query using a DataSet in c#
I'm having a couple of days with a dynamic query that doesn't bring me data to show in a report. What I have done is to make a code that helps me build a dynamic query using the parameters that I get ...
0
votes
3answers
28 views
Apply method to all elements in enumerable with LINQ
I have a list, trying to accomplish the following. I want to run a mapper method for each item in the list...can't seem to get the syntax correct
var viewModelList = ...
2
votes
1answer
32 views
Returning the result from a linq query but with one value modified
I have a class like this
public class Product
{
public int Id {get;set;}
public string Name {get;set;}
public Category Category {get;set;}
}
Now I want to query a List with Linq
var ...
1
vote
1answer
22 views
Group By in an ASP.NET Repeater
I have a set of questions that are grouped first by Parent Questions, and then by Subject. So basically my aim is to display something like this:-
Subject 1
Parent Question 1
Question 1
Question 2
...
0
votes
2answers
14 views
Get a value using Ling to XML and where clause
I want to use Linq to XML and I am trying to figure out to way to get the value for currency CAD, BuyRateForeign, basically I need to get value 5,602895.
<ExchRates>
<ExchRate>
...
1
vote
1answer
19 views
How to save Video in SQL Server and display in listview and play it in video player on asp.net C#
I am developing a asp.net project and want to do do task done asps here is a problem
i want to save a video in SQL Server table and also play that video in web player
how can i save a video in MS ...
-1
votes
2answers
68 views
How to create a Linq predicate?
I have the following linq query however I dont have to filter all the groups and only have to filter the groups that have been passed in.
the group types are being passed in as an enum array: ...
-1
votes
1answer
30 views
Linq Multiple OR with a list
I'm currently working on a C# project where I'm using LINQ.
I was wondering if it was possible to make a "multiple OR clause" with Linq with a list as an entry for the where.
I mean something like ...
0
votes
1answer
47 views
LINQ against two different data contexts using interfaces
This is the continuation of my question asked here.
Brief summary: I have two different databases with minimal changes (one table and foreign keys to it are missing in one table) and I want my ...
0
votes
3answers
42 views
Threads and linq data context
This is my code:
DatabaseDataContext context = new DatabaseDataContext();
var sourceList = (from q in context.Table1 where col1< 2000 select q).ToList();
foreach( Type x in sourceList)
{
var ...
0
votes
1answer
38 views
Firing individual events of dynamically created controls in windows application
I have created a code for creating a group of controls at run time in windows application.
I am trying to get individual click event of buttons but this is working for all the buttons.
the code I am ...
0
votes
1answer
36 views
Convert SQL with groupBy sub query to LINQ query
Please could somebody assist me in an example of the following SQL into a LINQ query in C#, I am using .NET 4.0.
SELECT x.*
FROM [eBookAddict].[dbo].[UrlRecord] x
JOIN ...
8
votes
5answers
94 views
How to check if property exists in Type in an extension method?
I frequently have code like this:
var stRecs = db.<someTable>
.Where(a => a.DepID == depID)
to select a single record, however if depID == 0 I would like to get back all ...
2
votes
4answers
55 views
Is it possible to cancel select and 'Continue' within .Select statement upon a condition?
is it possible to skip selecting within .Select method in LINQ -like 'continue' in fore..each?
var myFoos = allFoos.Select (foo => ...
0
votes
3answers
21 views
Linq Query Grouping Data table using two columns
I've got one question here. I'm a newbie so pardon with my terminologies, I am querying a data table wherein I need to group this data table according to date and their unique access code.
var ...
0
votes
0answers
36 views
Conversion of Expression Func types
I have an
Expression<Func<T_ENTITY_A, object>> sortExpression
which I need to convert to a
Expression<Func<T_ENTITY_B, object>> sortExpression
Each property in ...
0
votes
3answers
41 views
Iterating controls on button click in c# windows application
I am trying to create a windows application where I want to display a group of controls (Combo Box, Text Box and a button) on button click inside a panel.
I have created a code to create controls ...
1
vote
4answers
36 views
Query Object Structure using string input
I'm trying to find a clean way to allow input of a string that can then query an object structure. I think a dynamic linq query is what I want but I can't figure out how to implement this.
The user ...
0
votes
1answer
29 views
Expression - Build a full Query
In my project I have a base class to execute read function on database.
All inherited classes will be able to build their own query (where clause, filter, paging, etc). However I don't want to expose ...
2
votes
1answer
35 views
Switch alternative/Extensible Programming good practices? [duplicate]
First, a bit of background of my question; I am writing a modular Server/Client type program in C#. I have a threaded processing system to handle my packets from a client queue, an example of what I ...
0
votes
2answers
26 views
NHibernate - select child by parent id
I have an object that represents an Event. The event has invitees. It looks like this:
Event
{
ID,
Name,
Invitee[]
}
Invitee
{
UserID,
Status
}
In the mappings, the event ...
0
votes
1answer
49 views
Saving Items from Listbox to SQL Server table using LINQ
I have the following Item(s) A (string) and Item(s) B (decimal) In my WPF ListBox. I intend to
to save them to a table in MS SQL database with the respective data type.
...
1
vote
1answer
37 views
Selecting all objects from a list that return true on a member function, as a list?
I'm new to LINQ and trying to get a hold of it.
It's been useful so far for various things such as cutting down the code required, like when using .ForEach() to run a function on every object.
Now ...
0
votes
4answers
76 views
Linq equivalent of for in foreach
I'm borrowing code from this question as I went there for inspiration. I have a list of objects, the object has an integer property and I want to foreach the list and the loop the number of integers. ...
0
votes
2answers
56 views
linq-to-sql SelectMany() troubles
I'm trying to find a more elegant way of pulling information from my db to my web application. Currently I pull all data in my table and use only two columns' data. It was suggested that I look into ...


