Language Integrated Query (LINQ) is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages.
0
votes
1answer
26 views
how to use ContainsKey with Linq and manage the case if key not found
How do you convert this code into Linq lambda expression?
var list = new List<string[]>();
foreach (var @char in _word)
{
if (mapping.ContainsKey(@char.ToString())) // I tried with ...
0
votes
3answers
34 views
How to sort List<Point> [duplicate]
I have this variable:
List<Points> pointsOfList;
it's contain unsorted points( (x,y) - coordinates);
My question how can I sort the points in list by X descending.
for example:
I have ...
1
vote
0answers
8 views
Call REGEXP_LIKE using LINQ to Entities with Oracle
So if I have an Oracle query like this:
SELECT * FROM xyz WHERE REGEXP_LIKE(col1, '^[0-9]+$');
How can I call REGEXP_LIKE using LINQ to Entities with the Oracle.DataAccess client:
var q = from x ...
14
votes
2answers
3k views
Convert String to Int in EF 4.0
Is there any way of doing this at all? I have a string field in the DB and I want to parse it into a int property in my LINQ query (yes, it must be at the IQueryable level, not in memory).
I know 2 ...
1
vote
3answers
52 views
Getting an IList<field_type> from IList<object_type>
I have an IList<Person> object. The Person class has fields, FirstName, LastName, etc.
I have a function which takes IList<string> and I want to pass in the list of FirstNames in the same ...
1
vote
2answers
42 views
Linq Sorted Groupby and Orderby fields
I feel I am just on the edge of my answer!
I have a custom fileInfo class with holders info such as "reporting store number" , "report date" etc...
I have a List<fileInfo> which I hold all ...
-3
votes
1answer
50 views
C# Joining 3 Lists with Linq
I want to join 3 Lists that have the following format:
List1:
CountryID | CountryData | regionUID
===================================
12 | Has good gras | 4567
12 | nice ...
4
votes
1answer
42 views
Entity Framework 5 and SQL Queries
I am facing serious performance issues... My query is supposed to filter Products with SQL directly in database. When I execute this code, it doesn't, and it returns all products and filters them in ...
-2
votes
3answers
91 views
How Do I Sum Items in the List box?
I have two ListBoxes, Source and Destination. The destination ListBox has Items selected by the user.
How do I sum items in a destination ListBox?
The Destination ListBox has two data types String ...
11
votes
3answers
8k views
Creating dynamic queries with entity framework
I would like to know what is the best way of creating dynamic queries with entity framework and linq.
I want to create a service that has many parameters for sorting and filtering (over 50). I will ...
6
votes
3answers
4k views
Add the where clause dynamically in Entity Framework
I have this sql statement
SELECT userID from users WHERE
(name='name1' AND username='username1') OR
(name='name2' AND username='username2') OR
(name='name3' AND username='username3') OR
..........
...
2
votes
5answers
63 views
Lambda property value selector as parameter
I have a requirement to modify a method so that it has an extra parameter that will take a lambda expression that will be used on an internal object to return the value of the given property. Forgive ...
16
votes
6answers
35k views
How do you add dynamic 'where' clauses to a linq query?
I've got a User table with a bitmask that contains the user's roles. The linq query below returns all the users whose roles include 1, 4 or 16.
var users = from u in dc.Users
where ...
0
votes
1answer
22 views
Finding matches that contain certain text in properties using LINQ
I am trying to convert the following code to LINQ
foreach (var item in pageHistorycol)
{
if (item.PageTitle.Contains(text) || item.PageURI.Contains(text))
{
...
1
vote
2answers
26 views
Code to collapse duplicate and semi-duplicate records?
I have a list of models of this type:
public class TourDude {
public int Id { get; set; }
public string Name { get; set; }
}
And here is my list:
public IEnumerable<TourDude> ...
1
vote
1answer
40 views
Using a Dictionary with PredicateBuilder?
I have a Dictionary<string,object> of search terms and values. In this case the term is the key. An example is:
var args = new Dictionary<string,object>() {{"name","joe"},
...
0
votes
2answers
57 views
How to write Linq expression using external objects
I am trying to convert a loop in to a linq expression. But it seams not to work the way i am doing it:
var customer = GetCustomerFromDatabase(id);
ICollection<Order> customerOrders = null;
if ...
0
votes
1answer
60 views
C# Linq to Entities Custom query to create one field in parent entity that contains a collection of child entities for binding in WPF
I am trying to create a binding source for a gridview that contains the datasource for a child gridview. I have attempted it in the following way:
I have 3 tables:
Patients: id(PK), fname, fname
...
0
votes
4answers
49 views
Select Parent XML(Entire Hierarchy) Elements based on Child element values LINQ
I have the following XML and query through the ID,how do get the Parent Hierarchy
<Child>
<Child1 Id="1">
<Child2 Id="2">
<Child3 Id="3">
...
0
votes
0answers
16 views
concat ienumerable with variables or values
I have a Linq like this:
var sales = (from ltd in DB.Sales select vendor, totalsales);
now I want to insert a new record by the end,
sales = (from ltd in DB.Sales select vendor, ...
2
votes
3answers
168 views
+50
Stored Procedure return values with linq data context
I am trying to access the return value of a stored procedure with Linq
DECLARE @ValidToken int = 0 //I have also tried using a bit instead of an int here.
IF EXISTS(SELECT 1 FROM Tests WHERE ...
-5
votes
3answers
117 views
Could C# Linq do combinatorics?
I have this data structure:
class Product
{
public string Name { get; set; }
public int Count { get; set; }
}
var list = new List<Product>(){ { Name = "Book", Count = 40}, { Name = ...
0
votes
1answer
56 views
left join linq is not working
i have this linq query
var x = (from d in detalle
from n in nlj.DefaultIfEmpty()
join nd in nuevodetalle
on new { d.ope_idsku ,d.ope_tipo } equals new {nd.ope_idsku ,nd.ope_tipo }into nlj
from n in ...
2
votes
2answers
61 views
Violation of PRIMARY KEY constraint: Cannot insert duplicate key in object
When I want to persist a complex model, I get this error. I think I know where it comes from, but I don't know how to solve it. I'm importing a few feeds and create objects automatically, including ...
0
votes
1answer
65 views
Obscure “Unsupported overload used for query operator 'Where'.”
I'm using LinqPad and LinqKit to try to learn more about linq to construct complex queries, but I seem to be stuck on simple queries. I haven't found a solution to the error in the question ...
0
votes
1answer
31 views
Combine two records into one and update column
I have the following records in my CartItems table:
When I migrate the cart, I'd like to combine the two records into one with the cart id of Test1 and then update the quantity to 2.
So it would ...
1
vote
1answer
23 views
XDocument.Save(string) not available
I'm using VS 2012 Express for Windows 8.I want to load an XML file, modify its content and then save it back to disk.
Up to now, I've been using LINQ to XML and I've been able to load the file, ...
1
vote
1answer
19 views
Group By Sum Linq to SQL in C#
Really stuck with Linq to SQL grouping and summing, have searched everywhere but I don't understand enough to apply other solutions to my own.
I have a view in my database called ...
0
votes
3answers
92 views
Linq query to dictionary
I have the following LINQ query that I am using to query a datatable and populate a dictionary, but it keeps throwing the error:
System.ArgumentException: An item with the same key has already ...
-10
votes
0answers
53 views
C# console and Excel [closed]
I am using a console application in C# to get data from excel file using connection string in app.config file. Now I have two excel files namely Data.xlsx and Data1.xlsx where the first column in both ...
1
vote
2answers
30 views
how to show the following output in wpf datagrid depending on a condition
I am displaying the Processing Time data in a datagrid as follows
using the following statement
var duration_query = this.db.Events
.Where(p => ...
1
vote
2answers
44 views
How can I reference an List<string> object's position index without searching for first occurrence?
I am trying to create an XML document using Linq and need to reference the index within a list of each object. At the moment all I can find is the IndexOf(s) method which just returns the first ...
6
votes
4answers
92 views
Returning Expression<> using various class properties
I have something like this:
public Expression<Func<Message, bool>> FilterData()
{
switch (this.operatorEnum)
{
case FilterParameterOperatorEnum.EqualTo:
return ...
1
vote
0answers
29 views
How to return a list of stores which are a specified distance from the entered Postcode
I am using Google Maps to create a store locator.
The user will enter their postcode and select from a dropdown menu the distnce from the location - 5, 10 15 20 miles.
Which will return the stores ...
1
vote
1answer
41 views
Implementing IEqualityComparer<T> on an object with two properties in C#
I have a case where I need to grab a bunch of items on distinct, but my source is a collection of objects with two properties, like this:
public class SkillRequirement
{
public string Skill { ...
0
votes
2answers
242 views
Updates in Linq To Sql
For updating records, instead of querying the context and updating each record individually,
we currently use code that does DeleteAllOnSubmit on existing set of rows and InsertAllOnSubmit on new set ...
0
votes
1answer
34 views
How to merge multiple datatables (every datatable return one row) in one row
I have multiple data tables : i want to merge them (My P.K : emp_num)
var tblEmp_data = new DataTable();//one row
var tblEmp_time = new DataTable();//one row
var tbl_emp_mission = new ...
2
votes
1answer
83 views
LINQ - Not returning the same value as SQL Server
I have a really weird issue.
I have this query:
var systemAppEntityViewModelFieldCustom_SecurityByUserList = (from t in coreEntityModel.SystemAppEntityViewModelFieldCustom_SecurityByUser
...
5
votes
2answers
83 views
Entity Framework Generates different queries on different workstations
We have problem on single Developer Machine and a few clients.
Single Linq Query Generates two different SQL queries. The problem is in fact that second query has “OUTER APPLY” statement which ...
-1
votes
3answers
42 views
C# Directory.GetFiles with mask
In C#, I would like to get all files from a specific directory that matches the following mask:
prefix is "myfile_"
suffix is some numeric number
file extension is xml
i.e
myfile_4.xml
...
0
votes
1answer
15 views
to count the number of occurrence of an element with specific attribute and specific value in xml
i am using linq to xml along with xpath to get the number of occurrence of a element with a specific attribute and specific value....here is my xml file...
in this i have to extract the number of ...
0
votes
1answer
18 views
System.NotSupportedException:The entity or complex type Model.APPLICANT cannot be constructed in a LINQ to Entities query
Currently fixing my Codes until this exception occured
System.NotSupportedException: The entity or complex type Model.APPLICANT' cannot be constructed in a LINQ to Entities query
This is my ...
0
votes
3answers
44 views
How to assign index of the collection to property
I have following linq query productionMachines.OrderBy(x => x.TimeDone).ToList();
Now I want to assign to some property X, index of it's location in the collection.
Like the first ...
0
votes
1answer
21 views
Unable to retrieve Dictionary value when used in LINQ
I am trying to update a 'Name' DataColumn based on a 'ID' DataColumn in a DataTable.
The 'ID'-'Name' pairs are stored in a Dictionary, which is created using a DataTable extension method as follows:
...
1
vote
2answers
53 views
LINQ stopped working after upgrade to VS 2010 and .NET 4.0
I have started using Visual Studio 2010 recently. I have upgraded my solution from old 2008. After this I have tried to run my project, which is very simple database search engine using linq commands ...
0
votes
3answers
1k views
Populate Combo box using LINQ query
I'm trying to populate a combo box with data resulting from a LINQ query on a DataSet. The problem is, nothing is showing up in the combobox. At all.
var digits =
(from digit in ...
-1
votes
2answers
47 views
updating multiple records in database with linq to sql without loop, is it possible?
ok, let say i want to update multiple rows in database at once, without looping, if we do it with loop, it might look like this :
var products = (from prod in context.Products
where ...
1
vote
1answer
34 views
Does a code that combines single() with yield make any sense?
I came across a code which should return the single object expected in a list, this code has an iterator block which yields the found items, i have simplified the case in the following example:
...
0
votes
1answer
46 views
Execute decrypt function on LINQ query
If I have the following query where Companies.Name is encrypted:
Obviously executing the following query is going to be invalid because we're searching against encrypted names.
...
0
votes
1answer
37 views
NHibernate query throws exception, when looking by related table
I have pretty simple linq expression:
session.Query<Order>().Where(x => x.States.OrderByDescending(z => z.Date).FirstOrDefault().Name == "2").ToList();
Result: InvalidCastException ...


