1
vote
1answer
54 views

Linq Query Optimization joining of tables

So I have a linq query, where s1.code comes from an object before this linq query. var q1 = from cf in db.Control_Franchises join t1 in db.Territories on ...
0
votes
1answer
24 views

Will there be any performance or quality issues if we use lambda expression in foreach loop?

I have a piece of code as below - var serviceResponseItems = new List<ServiceResponseItems>(); foreach (var item in serviceResponse.SomeItems.Where(x => !string.IsNullOrEmpty(x.Id) ...
0
votes
2answers
66 views

Copy data between databases using Entity Framework, LINQ and MVC

There is a problem. I have old database with some data, and by another side I have new database with new structure. Now I need best way (ideas) how to copy data from one table to the another. ...
3
votes
2answers
62 views

How can I change same property in multiple Objects using LINQ?

private void AllowOtherSelectors(bool value) { foreach (var c in this.Parent.Controls) { if (c == this) continue; if (!(c is ...
2
votes
0answers
52 views

Linq query performance improvements [migrated]

As I am getting my Linq query to a functional point, I start looking at the query and think about all the "ANY" , and wonder if those should be a different method and then I have data conversions ...
3
votes
3answers
139 views

Slow LINQ query for .ToArray()

I am using following query foreach (var callDetailsForNode_ReArrange in callDetailsForNodes_ReArrange) { var test = from r1 in dtRowForNode.AsEnumerable() join r2 in ...
1
vote
4answers
113 views

Best searchable collection strategy for performance?

I've got a collection of objects with the following interface: public IEntity { public string Key1 { get; set; } public string Key2 { get; set; } ... some other properties } and am ...
0
votes
0answers
20 views

Speed Up Multi Linq Query in a Function

I am try to speed up the linq codes as much as possible. Could anyone help? The database call will return a dataset with 3 tables:- Table 1 contains 1052 rows, Table 2 contains 6412 rows, Table ...
1
vote
0answers
75 views

Why I lose performance if I use LINQ on MongoDB?

this is the situation. I have a Domain object Product like this... [DataContract] public class Product : IStorableEntity { [DataMember] public String Id { get; set; } ...
2
votes
1answer
71 views

Efficiently filtering a large collection of POCO entities

I'm working on improving the performance of a linq filter against a large collection of POCOs, but local testing is indicating a CPU bottleneck. I was initially trying to do this to reduce the load ...
1
vote
1answer
50 views

SQL performance linq indexes

I have a SQL database where i store routes. I store routeinformation in one table and the coordinates in another table. Right now i have around 40 routes with 50k coordinates if you sum all routes. ...
-1
votes
2answers
135 views

Linq select multiple columns as separate array

I have table 4 columns. JobId StateId Salary Expense 1 1 35,000 31,000 1 1 33,000 25,000 1 2 28,000 26,000 2 2 ...
21
votes
4answers
493 views

Array.Count() much more slower than List.Count()

When using the extension method of IEnumerable<T> Count(), an array is at least two times slower than a list. Function Count() List<int> 2,299 ...
0
votes
0answers
50 views

LINQ string doesn't work as expected in where clause

If I replace product name with a product ID the query works fine. When I choose a Product name that equals "PC" it returns nothing. I know that PC is correct because in SQL it works fine. I use other ...
2
votes
1answer
43 views

LINQ using Group with Count and Where, easy SQL, harder in LINQ

I'm trying to display cities names where a count is greater than 1. I can do it easy in SQL and am close in LINQ but can't figure out how to use group and also get a count and display a name ...
1
vote
3answers
73 views

LINQ with Group, Join and Where Easy in SQL not in LINQ?

I have trouble understand how to translate SQL into LINQ. I would like to do the following but can't figure out how to get the Group By to work var query = from s in Supplier join o in ...
1
vote
1answer
78 views

SQL select Count with where very slow

i use a lot of count() function in my program... var housewith2floor = from qry in houses where qry.floor == 2 select qry; var counthousewith2floor = housewith2floor.count(); var housecolorwhite = ...
1
vote
3answers
51 views

Am I abusing of Linq to objects?

I think that queries with linq to objects end up very readable and nice. For example: from person in db.Persons.ToList() where person.MessageableBy(currentUser) ... Where MessageableBy is a method ...
0
votes
3answers
40 views

Linq to SQL - Find element with lowest field value - Performance

Today I am facing a problem of finding the most efficient query to database using Linq To Sql. I want to get the element from db.ElementsCollection that has lowest element.SomeNumber value. I simply ...
0
votes
2answers
66 views

Faster update for millions of records in Web Forms

So i need to update some over 1 million records from an asp.net web forms project in the code behind with a data given in a textbox. I tried to do that with LINQ but that takes to long... 1st ...
2
votes
2answers
51 views

Find a better query and LINQ for improvement

From the following SQL Server 2008 R2 query I am trying to find: customers and his or her orders who has placed certain products in the order details table. This product must be matched from a ...
0
votes
1answer
57 views

How to prevent EF-Linq from generating a different query for variables versus constants?

I have a Linq-query that returns in LinqPad in approximately a minute (the first time) using hard integer-values. However, when I turn those hard integer-values into local variables, it takes forever ...
-1
votes
2answers
79 views

C# LINQ - What can I do here to improve performance?

I'm doing some heavy filtering on a collection (which is nothing more than an encapsulated list of entries of "datalines"). I need to 'consolidate' these lines on 3 fields (Date (string), Route ...
0
votes
0answers
32 views

Use the same linq code when the provider can change

I am creating new application and I would like to use LINQ (still learning the technology). The trick is the source provider will vary. It could be a MDB, SQL Server, CSV, Tab-delimited, XML, etc. ...
0
votes
0answers
31 views

Fastest way to get n-th row with Entity Framework [duplicate]

I have a random generator that I use to generate number within range 1 to N, where N is total number of records. N is in millions, so this is performance related question. Currently, I'm retrieving ...
1
vote
1answer
39 views

Fastest way to find records that end with key

I'm looking for optimal way to search through millions of records that contain serial number saved as varchar column which ends with specified string key. I was using EndsWith, however performance is ...
5
votes
2answers
77 views

Does the order of EF linq query clauses influence performance?

Should I worry about the order of Entity Framework linq query clauses in terms of performance? In the example below could changing the order of the two where clauses have an performance impact on ...
0
votes
3answers
41 views

Filtering out values from a list of object in a List

I have an IEnumerable collection of UnitGroup: IEnumerable<UnitGroup>, class UnitGroup { string key { get; set; } List<UnitType> NameList { get; ...
0
votes
2answers
109 views

Most efficient way to call linq on a list of information objects?

I'm trying to get data deep in my informational object out of a list of library objects to which I have attached them. The two solutions I have both seem very inefficient. Is there any way to reduce ...
1
vote
1answer
79 views

Is LINQ faster than ADO?

I am new to LINQ so to start exploring I created a multithreaded time app to see what is faster LINQ or ADO. This app counts how long I have at work till it's time to go home. The timer is set to 1 ...
3
votes
2answers
346 views

Performance of Linq on entity framework vs SQL stored procedure

We are using the Entity Framework to fetch some data. The LINQ query is using multiple joins, as shown in the code below. I have been asked to change this to a SQL Stored Procedure because its faster. ...
5
votes
6answers
251 views

Enumerable.Range(…).Any(…) outperforms a basic loop: Why?

I was adapting a simple prime-number generation one-liner from Scala to C# (mentioned in a comment on this blog by its author). I came up with the following: int NextPrime(int from) { while(true) ...
0
votes
3answers
166 views

Fastest way to convert List<int> to List<int?>

What is the fastest way take list of primitivtes and convert it to nullable list of primitives for example: List<int> to List<int?> in c# the easy solution, creating new list and adding ...
3
votes
2answers
69 views

Changing the value of a ConstantExpression in a pre-existing BinaryExpression

I have some code generating expressions to pass as the "where" statement in a database read, and I'm trying to speed things up a bit. This example below makes a where statement to match the PK of a ...
2
votes
1answer
109 views

How to allow a user to enter Value1 and then say Value1 = Value2

I know this can be done by an almost endless solution. But I am looking for the most practical way. I have many times when this sort of thing is needed: Allow a user to enter a Zip code and then ...
0
votes
1answer
35 views

Filter a list and get also its opposite with linq

I have a simple question about list with LINQ. I searched about it and I haven't found anything like it. I don't know which of them is better (in performance, for example). list1 = list.Where(x => ...
5
votes
1answer
269 views

Linq ToList/ToArray/ToDictionary performance

Well I encounter many situations where having an IEnumerable is not enough. However I'm unsure about the performance of the above method calls. What I really want to ask is: Is the performance of ...
4
votes
4answers
182 views

ToList method in Linq

If I am not wrong, the ToList() method iterate on each element of provided collection and add them to new instance of List and return this instance.Suppose an example //using linq list = ...
3
votes
6answers
151 views

For vs. Linq - Performance vs. Future

Very brief question. I have a randomly sorted large string array (100K+ entries) where I want to find the first occurance of a desired string. I have two solutions. From having read what I can my ...
0
votes
1answer
51 views

LINQ performance when using nullable properties in select

I have an IEnumerable collection. Using LINQ, I am populating the collection from a web service response. Below is the sample I am using. lookupData = from data in content["data"].Children() ...
2
votes
1answer
143 views

Is FirstOrDefault/First and OrderByDescending, quicker than LastOrDefault/Last and OrderBy? [duplicate]

I had a LINQ question I wondered if anyone knew the answer to. Normally if I wanted to find a record ordered by a particular field, such as the 'latest added person' I'd write something like: ...
4
votes
1answer
49 views

I'm trying to simplify with linq a statement that takes 2 lists of numbers and subtracts the first one from the second one

I'm trying to simplify, with linq, and hopefully make cheaper, a statement that takes 2 lists of numbers and subtracts the first one from the second one. I have something that works but I think it ...
1
vote
2answers
171 views

Convert an IQueryable linq query to IEnumerable<T> cancels out linq optimized way to work?

I'm kinda newbie on .NET, and I was wondering how does linq works, since you can aply many linq queries, one after another, but none of them are really executed until they're used to transfer ...
2
votes
3answers
69 views

Performance Comparison of Two Linq Calls

Assume that there are two queries running on a memory list; First query (employing extension methods): var temp = listX.Where(q => q.SomeProperty == someValue); Second query: var temp = from o ...
0
votes
1answer
38 views

Building Dictionary from elements of multiple smaller Dictionaries indexed by same key

I have one master Dictionary<int, SolarSystem> and several smaller Dictionary<int, JumpsHelperClass>, Dictionary<int, KillsHelperClass>, etc. My SolarSystem class is made up of ...
0
votes
2answers
133 views

Fastest way to execute LINQ against a BindingList?

I'm writing a WinForms app that contains a simple object like this: public class MyObject : INotifyPropertyChanged // for two-way data binding { public event PropertyChangedEventHandler ...
0
votes
1answer
49 views

Query performance to compare date with many join and entity framework

I have this database model : I use this query : public List<Film> ListFilmsSortiesDes7DerniersJoursDVD() { DateTime dateDans7Jours = DateTime.Now.AddDays(7); DateTime dateIlYa7Jours ...
0
votes
1answer
148 views

set number of pages on gridview

I am trying to populate records on a gridview depending on the result of two linq methods: GetRecords(string SearchCriteria, int skip, int take) which provides me the ammount of rows i´m going to ...
0
votes
2answers
174 views

Efficient LINQ Query for large dataset

I have a LINQ query that run on datatable that has 5,00,000 plus records. This query returns me only one row but takes almost 30 seconds to run. This is my query var callDetailsForNodes = from ...
4
votes
4answers
279 views

Performance issue loading data from CRM

Currently our website is facing a problem with slow response times (more than 1 min) when we query CRM from our website. We are using CRM 2011 though a web service. When we investigated we found that ...

1 2 3 4 5 8