0
votes
3answers
21 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
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
3answers
81 views

Linq - Replace string within a List(of String)

I have the following List(Of String) defined in my program: MyList: 1Test 2test 3 4Test 5 I would like to remove the word "Test" (regardless of capitalization) from each item in the list if it ...
0
votes
1answer
21 views

LINQ null reference exception on join

I'm getting a null reference exception for the following linq query: Dim Report = From Filter In EDTKPDPDescVar _ Group Join EDTK In eDTKBase _ On ...
2
votes
1answer
36 views

Sorting a DataTable using LINQ, when sort-by-columns may vary

I need to sort DataTables, however the sort-by-columns vary. Scenario #1, DataTable1 should be sorted by "Column1". Scenario #2, DataTable2 should be sorted by "Column1, Column2". Below is my first ...
0
votes
1answer
33 views

SQL: Row_number in linq?

This is my sql query, , select ROW_NUMBER() over (partition by AirAvail_ID order by AirAvail_ID) as IndexNo,AirAvail_ID from AvailFlt I would like to convert this to LINQ! O/P: IndexNo ...
2
votes
5answers
78 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 ...
0
votes
1answer
43 views

Second join statement incorrectly filtering records

I'm having trouble with a LINQ query where I am trying to join 3 tables, one of which acts as a filter. When I run the query with just one of the joins I get the expected number of records back but ...
0
votes
0answers
35 views

LINQ left join with group by not working

I'm having a difficult time getting a LINQ query using a left join with grouping to work. The following gives me a null dataset where it should not: Dim SiebelNonExistPDP = From PLI In ProdBase _ ...
0
votes
2answers
64 views

LINQ to Entities does not recognize the method 'System.String Concat(System.Object)' method,

I am getting LINQ to Entities does not recognize the method 'System.String Concat(System.Object)' method, and this method cannot be translated into a store expression. error when I am trying to ...
0
votes
0answers
31 views

3rd join causing null result

I'm having a problem with a LINQ query where I'm trying to perform 3 left outer joins. My problem is the 3rd join is causing the result to be null where it should not. Any idea what's wrong with my ...
0
votes
0answers
19 views

What type of lock used by xDocument.load method at time of loading xml file?

I'm having application in VB.net which is using LINQ and try to save data on local machine which reduce performance. What I believe is that because of the sync. application constantly write data on ...
0
votes
1answer
57 views

Where clause in LINQ method syntax

I'm having trouble determining where the 'Where' clause goes in the following LINQ query: Dim counts = eDTKBase.AsEnumerable(). _ GroupBy(Function(r) r.eDTK_PLI.). _ ...
0
votes
0answers
36 views

Convert SQL query into LINQ query in VB

I would like to know how to convert the SQL query listed below into a LINQ query in VB: SELECT * FROM (SELECT SUM(t.Amt) Tax, g.GenQuoteDetails_Id, g.lastTkdt, g.QuoteDt, g.BaseFareCurrency, ...
1
vote
0answers
39 views

how to compare modified rows and update into database using linq?

I am working on handsontable with asp.net. If user changes data on table and click on save button. Data comes on Jason format through AJAX call. Then I am able to convert JSON format data to List (of ...
0
votes
1answer
34 views

VB: Filter linq query with a list

so I'm new to LINQ and a just made a test query from a csv file that displays its results in a data grid. I was using simple Where statements like Where sys = "System 1" without a problem. When it ...
-1
votes
4answers
79 views

Do Enumerable.FirstOrDefault() stop when it finds item? [closed]

I tried searching on MSDN, SO and then on the Web but could not find answer. Say I have a collection in which I do FirstOrDefault(). Let say it finds the item. Does its stop and returns the item or ...
1
vote
1answer
54 views

LINQ grouping with count issue

I'm having trouble trying to group a LINQ query with a count correctly. As an example I'm trying to query a datatable with the following data: PC EC CC ABC XXX US ABC XXX CA ABC XXX UK DEF ...
0
votes
2answers
48 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 ...
0
votes
4answers
64 views

Convert LINQ C# to vb.net [closed]

I am literally struggling at the moment to convert this LINQ c sharp based code to vb.net, I tried many ways but no joy,Please help me out. private static Row ReturnRow(Worksheet worksheet, uint ...
0
votes
2answers
46 views

LINQ - UNION - remove duplicated based on a single column

I have this linq query where i want to remove all the duplicates based on the column MAILADR (but keep the other columns): Dim dataObject = (From a In db.TABLE1 Select New With { .ID = ...
0
votes
1answer
23 views

Enumeration Type exception when attempting to filter a LINQ query

I'm trying to generate a grid that end-users can filter the data using several inputs. To do this I'm attempting to filter an initial LINQ to Entities object as follows: Dim servhist As ...
1
vote
3answers
85 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 ...
0
votes
3answers
50 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 ...
0
votes
1answer
57 views

List to Array Over LINQ

I've had a good look into this but im still very uncertain, could someone please let me know how I can optimize this into LINQ ? This seems a little old and im sure there is a way to do this using ...
0
votes
0answers
26 views

Calling SQL Server Sproc from LINQ does not execute whole query

This seems related to this issue, which does not have an answer: LINQ: executing stored procedure, but skipping cursor within I have a stored procedure in SQL Server that runs correctly every time ...
0
votes
2answers
50 views

WPF DataGrid / LINQ Query (DataGrid new row not visible)

I'm relatively new to WPF/LINQ2Entities. I've managed to make progress but I am stuck on one issue that I've been researching: 1) I have a WPF DataGrid that is populated based on this ...
-3
votes
0answers
47 views

Linq subquery returns a concat String

I need help with query of Linq. I have a query of Linq and any rows have a column of XX. XX is a indeterminate number of records of string concats. Example: From car in DataContext.CarTable ...
0
votes
1answer
30 views

Linq To Update One Complete Row

So I would like to update/replace one complete row with the data I have. Instead of doing entityA.Name = entityB.Name I would like to say something like entityA = entityB, where entitiyB is same as ...
0
votes
2answers
44 views

VB.NET LINQ how to concatenate a Select

Dim placesOfServces = From x In tbl_pos _ Where x.active = True _ Select x.pos_id, x.pos_code & " - " & x.pos_desc Getting Error Range ...
1
vote
0answers
79 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 ...
0
votes
1answer
52 views

Using linq to delete and insert records from and to a dataset?

I'm working on a VB project for school. It's a snake game, and I'm storing the high scores in a database. I need to know how to insert and delete records from the dataset so that I can get rid of ...
2
votes
0answers
81 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 ...
0
votes
1answer
42 views

Skip is not a member of System.Data.EnumerableRowCollection(of System.Data.DataRow)

I am working on jqGrid paging and it was working perfectly ok when I was working in a separate application. I moved it to the existing project and keep getting this error. And If I try and add ...
3
votes
2answers
75 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
43 views

NHibernate InvalidCastException in AsBooleanExpression, class HqlTreeNodeExtensions in HQLTreeNode.cs

: I have a problem... I opted to use NHibernate 3.3.3 sources instead of the pre-compiled DLL because I'm getting sick of having NHibernate issues and not be able to debug them (ie black box). I ...
2
votes
6answers
81 views

Sum a range of ints in a List

Let's say I have a List like this: List<string> _lstr = new List<string>(); _lstr.Add("AA"); _lstr.Add("BB"); _lstr.Add("1"); _lstr.Add("7"); ...
1
vote
1answer
41 views

Linq date format

I'm trying to populate a gridview with, among other things, a date field using a LINQ query that pulls data from an Oracle database. My problem is the date format that winds up displaying in the ...
0
votes
0answers
41 views

Select all values from dropdownlist at once

Not sure if anyone can help here. Basically I am trying to select all values in a dropdownlist and pass them to a Scheduler control I am using. I have a btnPopulate button which loads values into my ...
0
votes
2answers
46 views

get a new dataset which is a subset of another dataset and based on some criteria in a column

I have a dataset as follows: foo1, Name, foo2 ================== xxxx, ab01, xxxx xxxx, ab02, xxxx xxxx, ab11, xxxx <---the 1st row of 'ab1%' in Name Column xxxx, ab12, xxxx xxxx, ab21, xxxx ...
0
votes
1answer
90 views

Linq to XML dynamic where query building

I have searched a while and found many great answers to this question but each solution errors when I try to mimick the code in my solution. I am passing values to a function that should Establish ...
1
vote
1answer
107 views

populate array list from For loop using entire database table row

I am trying check my Events table for DateTime overlaps in each of the events. I have written code that will allow a user to input a Module_code. This Module_code is checked against the entries in ...
0
votes
3answers
56 views

Comparing dates for overlap - not avoiding

I'm working on a timetabling piece of code. I am using a system of university modules and events associated to those modules, ie Module CSC3039 Event1 - Lecture Event2 - Lecture Event3 - Practial ...
0
votes
1answer
31 views

data type(s) of the type parameters ) in method cannot be inferred from these arguments

I have the following code which is throwing an error on the submit line. It says that data type(s) of the type parameters ) in method cannot be inferred from these arguments. As I have (I think) ...
-1
votes
1answer
37 views

Range variable hides a variable in an enclosing block LINQ [closed]

I have the following 3 queries. The first works fine but the second two are throwing up an error saying the range varible Year (or semester, respectively) hides a variable in an enclosing block or a ...
0
votes
1answer
50 views

Foreach to Linq

I have 2 ForEach loops and I'm trying to convert them into one Linq: Dim result As Type = Nothing For Each AssemblyItem As Reflection.Assembly In AppDomain.CurrentDomain.GetAssemblies For Each ...
0
votes
1answer
46 views

Checking value in a textbox for inclusion in a database

I'm just setting up a password reset form. The user will enter their email address in a textbox and then send that to my password reset account. I am looking for a way to check if the email address ...
0
votes
0answers
12 views

Programming linqdatasource queries for Telerik control

This question is hopefully not specific to just telerik controls. I am using one of their controls which is basically a scheduler. It is very simple to create a datasource and use it singularly. ...
0
votes
2answers
71 views

How to get element from list A and list B using LINQ

How to get element from list A and list B using LINQ EVEN if list B is empty (will still return element of list A but elements of list B will be empty) The idea is to be able to recreate a single ...
0
votes
2answers
51 views

Using LinQ with group by more than one column

I'm Newbi in LinQ, I have problem with group by in linQ. I wan to query like this: select MAX(TCheckpointGrouping.Id) AS CheckpointGroupingId, MAX(TCheckpointGrouping.MCheckpointId) AS ...

1 2 3 4 5 26