0
votes
1answer
32 views

InsertAllOnSubmit in LinqToEntities

What's the Method to InsertAllonSubmit in LinqToEntities. I am getting a result using where condition from one table. Now I need to Insert all records at a time into another table with out using ...
4
votes
2answers
40 views

?? operator didn't trigger System.DBNull type in DataTable DataRow

This is a follow-up question to .Net C# String.Join how to output “null” instead of empty string if element value is null? where the answer suggested to use the ?? operator to define a custom null ...
1
vote
1answer
34 views

How to query ManagementObjectCollection with LINQ, then loop through PropertyData for returned ManagementObject?

[C# .NET Windows Form WMI] I'm pretty new at C#, but I have experience with VBScript and I'm trying to convert a script I wrote to C#. Instead of just using a converter, I'm rewriting the code and ...
0
votes
1answer
68 views

How do I convert a nested SQL select statement with multiple aggregate functions into LINQ?

I have a table where each row contains a team id, a user id and a boolean value indicating whether or not that user is a representative. Users can be representatives for more than one team and teams ...
3
votes
2answers
85 views

Rearrange a list based on given order in c#

I have a list as follows: {CT, MA, VA, NY} I submit this list to a function and I get the optimum waypoint order list {2,0,1,3} Now I have to rearrange the list as per the order that is newly ...
0
votes
3answers
55 views

System.Linq.IOrderedEnumerable does not contain a definition for 'ToList'

Now this one has me stumped and so I would appreciate some help please. I have this code tested in .NET 4.0 application, and it works fine. However, when I move it back to my 3.5 environment, I get ...
1
vote
0answers
41 views

Expression Trees and Joins

Expression<Func<Account, IEnumerable<Attachment>>> attachments = t => attachmentBuilder.Populate("COMPANYNAME", t.AccountID.ToString()); var q = cxt.Accounts.Select(e => new ...
1
vote
2answers
46 views

Goto in the ElementAt extension method

I was looking some code generated by .NET Reflector of the Linq extension method ElementAt, and I see this code: public static TSource ElementAt<TSource>(this IEnumerable<TSource> source, ...
0
votes
2answers
45 views

LINQ Group By and aggregate fields

I've always struggled with grouping in LINQ, I'd like to group based on the date part of a datetime field and aggregate other fields. Example table layout myDateField myIntField1 myIntField2 ...
1
vote
2answers
42 views

How can I extract a list of Tuple from a specific table with Entity Framework / LINQ?

I need to extract a list of couple 'ID'/'Name' from a large table in C# .NET with Entity Framework. I try this request : List<Tuple<int, string>> list = (from res in db.Resource ...
0
votes
3answers
46 views

Querying the id of an entity using linq

In the following method I am trying to fetch the Username by passing the id value where the ids passed as parameter can be multiple values as in csv's (eg: 1,2) and are returned to the calling ...
1
vote
3answers
80 views

Select 2 values from LINQ in foreach

I have to select another column in the same query since when creating a single row i have to add the value in the same row. //Code 'Loop through the transactions For Each ...
7
votes
2answers
161 views

Linq: GroupBy, Sum and Count

I have a collection of products public class Product { public Product() { } public string ProductCode {get; set;} public decimal Price {get; set; } public string Name {get; set;} } ...
-4
votes
1answer
120 views

Check if a row is in a list and compare it to other rows in that table

I am using ADO.NET query to select the employee id's of all the employees whose have a location x, y or z and are working under a supervisor. This is the query that I am working with: SELECT ...
1
vote
5answers
70 views

Linq: Performing function on each array element, returning results to new array

I'm a complete Linq newbie here, so forgive me for a probably quite simple question. I want to perform an operation on every element in an array, and return the result of each of these operations to ...
0
votes
1answer
70 views

how to convert a datatable to List<long,List<keyvaluepair<string,string>>> in C#

I have a datatable with three columns says, ID, Name and Value. I want to convert this datatable into List<long,List<keyvaluepair<string,string>>>. The only trick is ID is foreign ...
1
vote
1answer
29 views

Populating a model with a LINQ outer join result

I'm trying to populate a model with the result from a LINQ outer join but I'm getting the following error:Cannot implicitly convert anonymous IEnemerable to list. I have the following model: public ...
0
votes
1answer
35 views

Select record in self-hierarchy that falls into a date range

Given table like this: RecordId CreatedDate ParentRecordId 1 2012/05/10 NULL 2 2012/05/13 NULL 3 2012/05/20 1 4 2012/05/30 3 I ...
3
votes
2answers
60 views

Using LINQ to compare two sequences for differences

I'm comparing two enumerables of different types, but seeing if there's any differences between them. I do this by casting them both to an enumerable list of compatible anonymous types: var curCombo ...
1
vote
1answer
33 views

Why does Access to Modified Closure Warning Disappear When Enumerable Method called with ()

Resharper's Access to Modified Closure warnings are usually quite helpful. I was just noticing that when I call the Any method inside of a for each loop, I'll get a warning if I don't use the open and ...
0
votes
3answers
45 views

LINQ query with GROUP BY and Count(*) into Anonymous Type

I'm trying to use a LINQ query to determine how many of each particular object type I have and record those values into an anonymous type. Let's say I have some data that looks like this (there are ...
3
votes
3answers
61 views

Linq select latest in group hierarchy

I want to get the latest record for each group if records when self-referencing hierarchy exists. My table looks like this: RecordId CreatedDate ParentRecordId 1 2012/05/13 NULL ...
0
votes
0answers
38 views

LinQ datasource showing this error “LinqDataSource 'AirAsiaDC' has no values to insert. Check that the 'values' dictionary contains values”

here is what i am trying to do, i am using LinQ data context to insert new record to database, for some reason, my linq showing this error "LinqDataSource 'AirAsiaDC' has no values to insert. Check ...
0
votes
1answer
27 views

Linq 2 Sql with Sproc, as queryable, are any query tweaks turned into SQL or are they C#?

So given some sproc on a datacontext say I do a.. from arr in someContext.MySproc() select arr.Hello, arr.Whoa where arr.Name = "grumbug" If it was from arr in someContext.MyTable then the select ...
0
votes
1answer
37 views

Select into List<int> from grouped objects

How can I select into a list of integers from the following code select grouped by McID? machinesVisited.GroupBy(x=> x.McID). Thanks for help.
3
votes
2answers
33 views

How to select objects with highest value of Property A, grouped by Property B?

For example, if I have an list of objects with the following properties No Grouper Sorter 1 X 3 2 X 2 3 X 1 4 Y 3 5 Y 2 6 Y 5 7 Z ...
1
vote
0answers
77 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; } ...
0
votes
0answers
22 views

Export to xls file removing leading zeros

Each of the FixedLifeMaster and VariableLifeMaster fields are stored in my database as nvarchars and in the Entity Framework as a strings. However, when I export to an .xls file, Excel only sees ...
0
votes
2answers
65 views

How is an Enumerable converted to a Dictionary?

I have the following code from MSDN sample: if (sheetData.Elements<Row>().Where(r => r.RowIndex == rowIndex).Count() != 0) { row = sheetData.Elements<Row>().Where(r => ...
1
vote
3answers
67 views

How to implement method with expression parameter c#

I want to create a method like this: var result = database.Search<EntityType>(x=>x.Name, "Entity Name field value"); result = database.Search<EntityType>(x=>x.Id, "Entity Id field ...
2
votes
1answer
47 views

Cast troubles while using LINQ to filter a Dictionary by values

I've got a Dictionary<string,int> with a few values in it. For example: "a", 600 "b", 550 "c", 400 I want to filter this list to keep values that are greater than 500. I don't use C# very ...
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 ...
0
votes
1answer
39 views

Linq XElement changes Value formatting in foreach

This seems like a strange one (unless I am missing something obvious). I have to store this string: {TestField1:=TestAltField1}{TestField2:=TestAltField2} in an XML Value field resulting in ...
1
vote
0answers
36 views

Caching in Entity Framework Extended and Expression

I'm using the Entity Framework 5.0 and the expression is described in the recommendations Type member support in LINQ-to-Entities? public static Expression <Func <Category , bool >> ...
0
votes
1answer
27 views

LinqtoCsv write - create new or append

I'm using LinqToCSV to write a list out to a csv file like this: var outputFile = ConfigurationManager.AppSettings["OutputFile"]; var context = new CsvContext(); ...
1
vote
1answer
50 views

LINQ to CSV and object value - TypeConverter cannot convert from System.String

I'm using http://www.codeproject.com/Articles/25133/LINQ-to-CSV-library I have a problem with a field of type object. For example: public class MyClass { [CsvColumn(FieldIndex = 1)] public long ...
1
vote
0answers
69 views

Merge Two or More Entity Framework Entities with Dynamic Columns?

I've got a project that uses an SQLite database with Entity Framework and VB.Net. The database is complex but everything is set up well for accessing the data in individual tables. What I need is a ...
-1
votes
0answers
61 views

Getting Distinct Items with IEqualityComparer only working selectively?

I have a situation where I'm pulling data from the web every 15 minutes to update a csv file of Trade data. The queries always provide the most recent 20,000 trades and there is always a bit of ...
0
votes
1answer
70 views

Converting LINQ to loops in C# using resharper [closed]

I am using Resharper 6.1 and I am pretty sure there is a way to convert LINQ into the loops. They have listed that functionality as one of their version 6 features here. ...
3
votes
2answers
85 views

Separating the column values of DataTable using LINQ

Consider i have a DataTable dt retrieved from oracle database in the following format Eno | EHobbies | Esal ------------------------------------------------- 1 | ...
0
votes
1answer
76 views

LINQ query on child list

I'd like to write a linq query which checks an object against a list of objects inside another object. Here is what I've come up with, which doesn't yield the correct results, because it only ...
4
votes
2answers
100 views

Using LINQ find nearby places from database

We want to receive list of nearby places from database using LINQ in ASP.NET 2012 and would like some feedback on our strategy. My table and fake data: PlaceId Name Latitude ...
2
votes
0answers
72 views

Linq Expressions: The binary operator Equal is not defined for the types 'MyEnum' and 'System.Enum'

I convert some of data from a WinGrid to an expression, in order to filter some output to the user. I have an initial collection (of MyObjectType), I apply some dynamic filters, and I obtain a ...
1
vote
2answers
63 views

Case-insensitive Func

I have a Func<Message, bool> where Message is a class of mine. I build up a Lambda and compile it into a Func<Message,bool> public static Func<Classes.Message, bool> ...
6
votes
4answers
185 views

LINQ to separate column value of a row to different rows in .net

Consider i have a datatable retrieved from oracle database in the following format SNo. | Product | Cost ------------------------------------------------- 1 | ...
0
votes
4answers
95 views

How get the biggest number?

I am trying to get the biggest number from a field in my database using this code: var bb=(from c in Office_TBLs select c.CodeNumber).Max(); When i run the query I receive the result "999" which ...
0
votes
2answers
57 views

How to add conditional condition to LINQ query based on a previously returned value

For example: var sList = from ASL in assetsensorlist where ASL.Description == assetSensor.ToString() select ASL; assetsensor = sList.FirstOrDefault(); var rList = from ARL in ...
3
votes
2answers
74 views

Compare and check collections using LINQ

I have to compare 2 collections and check if the transactionId in the TransactionLevelCommentsCollection exists in the TransactionCommentsCollection. If exists throw an alert of the ...
0
votes
1answer
68 views

Linq to FileHelpers Class

I am trying to get the results of a linq query int a file. I created and array of the same type as the FileHelpers class I created, then queried the data and assigned the values to the array I just ...
4
votes
2answers
71 views

Is there a query generator or extension point for QueryOver like there is for LINQ?

I'm trying to use calculated properties that I use with Query<T>() inside of a QueryOver<T>(). When using a LINQ query, I can register custom generators with a custom ...

1 2 3 4 5 91