Asp.net - Converting The Rows Of A Returned DataTable Object Into A Useful List?

Jun 23, 2009

I am currently writing unit tests for an application near completion (before management looks at it and turns it inside out). I am testing the business layer and a method is set to return a datatable of all "GroupID"s, which are simply an integer to represent the group that a user belongs to.

I'm assuming the best way to assert on this unit test would be to assert that the correct groupIDs are being returned from a controlled test database. However, I'm not sure how to assert on a datatable. Is the only (and best) possible way to accomplish this to simply loop through the datatable until it's empty and add each value to an array of integers? How would one go about asserting on this test?

View 2 Replies


ADVERTISEMENT

VS 2010 LINQ On A DataTable - Are Rows Returned As Reference

Feb 6, 2011

When I query a DataTable using LINQ, are the rows returned as references? Either way, is it possible to control this behaviour, so that rows are either returned as references or as new rows?My guess is that all objects are returned as references by default, since that seems to be the normal behaviour in most programming languages.

View 2 Replies

Dynamic List From DataTable.Select Rows Collection?

Jun 6, 2011

I'm am creating a "pop-up" CheckedListBox over a button on my DataGridView. The values in the list are going to be filtered based on the value in column 0 of the DataGridView.I have already pulled in a "master" DataTable with two columns: ACODE and MATRIX.I want to call the following function and return an array of strings that I can use to build this CheckedListBox with. The line between "For Each r" and "Next" generates a "Number of indices is less than the number of dimensions of the indexed array". The number of items is variable in the array so I can't predefined it. I know I'm going down the wrong path.

Function StudyGroupSamples(ByVal sampleType As String) As String()
Dim thisArray() As String
Dim theseRows() As DataRow

[code]....

View 2 Replies

Generic List Equivalent Of DataTable.Rows.Find Using .NET?

May 8, 2009

I am converting DataTables to a generic list and need a quick and easy way to implement a Find function. It seems I am going to have to use a Predicate. Upon further investigation, I still can't seem to re-create the functionality. Private Function ByKey(ByVal Instance As MyClass) As Boolean Return Instance.Key = "I NEED THIS COMPARISON TO BE DYNAMIC!" End Function

Dim Blah As MyClass = MyList.Find(AddressOf ByKey) But I have no way to pass in a key variable to this predicate to do the comparison, as I used to do with DataTable..Dim MyRow as DataRow = MyTable.Rows.Find(KeyVariable) How can I setup a predicate delegate function in VB.NET to accomplish this?

Do not recommend LINQ or lambdas because this is question is regarding .NET version 2.0.

View 1 Replies

VS 2008 Create A List(of Point) From 2 DataTable Rows?

Feb 28, 2010

I have a table with 2 rows named timeStamp and value. I know I can iterate through the rows and create points and add them to a list (new point(timeStamp,value), but is there a way to do it without iteration?

View 11 Replies

Converting An Object To A List Of Something

Aug 3, 2010

I'm trying to convert an object, that is a list of something, to that list, but I'm having problems figuring out exactly how to do that. I have created the following code:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim a As New List(Of String)

[Code]....

View 4 Replies

Asp.net - No Rows Being Returned From Dataset JUST On IOS Using MVC 3

Aug 11, 2011

I have a model that returns a dataset to a view and builds a list. The crazy thing is that I have tested this code with IE, Safari on Mac and Windows, Chrome and Opera and all return data. However, on the iPad or iPhone, zero rows are returned from the dataset object. It seems that the model is in fact passing the dataset to the view. I am using jquerymobile to render the view for the iOS devices and have taken that out of the mix to test and it still doesn't work.

[Code]...

View 1 Replies

VS 2010 : Combine Similar Rows In A Datatable (the Rows Only Differ By One Column)?

May 8, 2012

I have three sub tables that I want to process. For each I want to combine the rows, as they are only different by contents in the second column(I want to do the same to the fourth column, later):

'Sub table 1
xx|C201 |02300877 |Samsung |....
xx|C201 |02300877 |Toshiba |....
xx|C213 |02300877 |Samsung

[code]....

p.s. For the fourth column, Manufacturer information , I want to do the same and I'd probably get something like this for the final table:

xx| C201,C213,C606,C619 |02300877 | Samsung
xx| C201,C213,C606,C619 |02300877 | Toshiba
xx| C303, C305,C712 |02301163
xx| C207, C209, C708 |02301165

View 5 Replies

Determine How Many Rows Returned By Sqlreader?

Sep 24, 2010

I'd like to know after I've executed MySqlReder = MySqlCommand.ExecuteReader() how many rows it returned. If it's one I can continue processing with the data. If it's more than one I need to populate a drop down list box.

View 6 Replies

Get The Number Of Rows Returned By A OleDbDataReader ASP.NET?

Jun 18, 2010

After connecting to a database using DataReader, how can I count the number of rows ?

View 2 Replies

Access An Object Type Returned By A COM Object

Feb 26, 2011

I'm trying to re-write an old VB 6 OCX into a VB.net DLL and I'm having problems accessing the object returned from a COM object. Here is a snippet of the old VB 6 code: Dim objResult as Object

[Code]....

View 5 Replies

Add Rows To A DataTable Without Losing The Previous Rows?

Apr 14, 2012

Dim _tableBackLogs As System.Data.DataTable
Do While i - 2 > 0
_tableBackLogs = Global.DataAccess.GetDataTable("SELECT SubjectID,SubjectName,Grade FROM SubjectPI WHERE RegNo='" & CInt(HttpContext.Current.Session("userName")) & "' AND Status='Fail' AND Semester='" & i - 2 & "'")
i = i - 2

Doing this replaces the previous data in the DataTable. I want to retain the previous data i.e i want the new rows to be added to the DataTable w/o replacing the previous rows.

View 2 Replies

C# - LinqToSql - Prevent Sub Queries When Limiting Number Of Rows Returned?

Sep 16, 2009

Dim query = (From p in Parent _
select _
p.ID, _
Tags = String.Join("|", p.Child.Select(Function(c) c.Tag.TagName).ToArray)).Take(100)

In the above query, when using Take to limit the rows returned, a separate SQL query is executed for each row to return the 'Tags' field. If I remove Take(100), a single query to sent to Sql Server.So, how do I limit the number of rows returned, while preventing a new sub query being executed for each row?

View 1 Replies

OOP - Declare Two Datatables And Fill Them Both From A Datatable Returned By A Function In Class

Sep 27, 2010

When I declare two datatables and fill them both from a datatable returned by a function in class, that when i filter the one it seems to filter the other aswell?

For example:

I declare the datatable and initiate my class:

Dim DatatableOne As New Datatable
Dim DatatableTwo As New Datatable

Dim MyClass As New MyClass

I then call the function that returns a datatable and apply it to datatable1 and 2 Then fill two DataGrids with the table:

DatatableOne = MyClass.GetTable()
DatatableTwo = MyClass.GetTable()

DatatableOne.DefaultView.RowFilter = "Name = 'Tom'"

[CODE]...

For some reason i don't understand but both grids end up with the filtered data?

View 3 Replies

Access Count Property On Array Of Rows Returned By Datatables Select Method

Apr 21, 2009

I'm trying to access the Count Property on the array of rows returned by the datatables select method, this is after converting the Web Project to 3.5

View 2 Replies

How To Fill A DataTable With A List(Of T) Or Convert A List(Of T) To A DataTable

Nov 26, 2009

I have read many posts on this topic; among them and most recently .NET - Convert Generic Collection to Data Table. Unfortunately, all to no avail.

I have a generic collection of structures :

Private Structure MyStruct
Dim sState as String
Dim lValue as Long
Dim iLayer as Integer
End Structure

Dim LOStates As New List(Of MyStruct) I need to fill a DataTable with this list of structures but have no idea how to go about doing this. I am using vb.net in Visual Studio 2008.

View 1 Replies

List Of T Find Date Or Other Property In A Object In The List - Then Return Found Object?

Sep 3, 2009

After reading all the examples for list of T exists and Find and find first, none show how to handle multi-property objects. Below is bare bones example maybe someone could flesh out to show how this should be done.

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim DatePriceList As New List(Of DateAndPrice)
DatePriceList.Add(New DateAndPrice(Date.Parse("1/1/2000"), 10.12))
DatePriceList.Add(New DateAndPrice(Date.Parse("1/2/2000"), 11.12))

[Code]...

View 3 Replies

Object Returned By Reference From Function?

Aug 5, 2011

This should be a fairly common question, but I haven't found a straightforward answer anywhere.

If I instantiate an object within a function in VB.NET and return it, does it return it be reference or by value. IE - should I be worried about performance if I write something like this:

Public Function ret_obj_func() As big_object
Dim ret_obj As New big_obj(<lots of stuff>)
Return ret_obj
End Function

If I call this function from somewhere else, will it instantiate the object in the ret_obj and then create a deep copy to pass back a copy to the caller, Or will it just pass back a reference?

View 2 Replies

Compare Returned Value Against A List?

Nov 6, 2011

Im still doing some amatuer programming, but now in .net and Ive come here with a question that I cant seem to find an answer to... Basically, Ive got a program im writing to interface into my companies AD and return some values, which then trigger other events etc..

The problem Ive run into is trying to find and easy way to compare the returned value when against a list of possible combinations (16 possibilities to be exact), and if its one of them then all good continue on but if not then I need to throw an error and exit sub.[code]...

View 4 Replies

For Each Loop - Value Returned From List?

Mar 21, 2012

I have a problem with a For Each Loop that doesn't make any sense. The For Each Loop returns values from a list which are Memory Ranges for a given device. When I check the count in the list it returns 3. The For Each only returns 1.

Here's my code:
Private Sub DisplayDeviceResources(ByRef lvwResources As ListView, ByRef intClassIndex As Integer, ByRef intDeviceIndex As Integer)
Dim curDeviceClasses As New DeviceClasses
Dim lvwItem As ListViewItem
EnumerateResources()
[Code] .....

View 12 Replies

Display A List (Of Object) Which Has Single Objects And Child List (Of Object)?

Sep 6, 2011

Limited to using v2.0 of .Net framework (we use VB.net) due to environmental constraints on our servers.I've got an ASP.net webpage which pulls data from a webservice that performs checks on user accounts in active directory. Operators can check multiple accounts at one time using the web interface. The webservice returns a list(of AccountCheck) objects which themselves contain single properties like username, email address, and List(of AccountError) objects which contain multiple properties.[code]What I want to do is using some kind of repeater, create multiple panels or divs which contain labels showing the username, email etc, and a gridview which has the accounterror list bound to it to show all the errors. The users could be checking 2, 5, 7 accounts at once, and is dynamic.

View 2 Replies

Deep Copy - Is Object Returned By Reference From Function ?

Aug 5, 2011

If I instantiate an object within a function in VB.NET and return it, does it return it be reference or by value. IE - should I be worried about performance if I write something like this:

Public Function ret_obj_func() As big_object
Dim ret_obj As New big_obj(<lots of stuff>)
Return ret_obj
End Function

If I call this function from somewhere else, will it instantiate the object in the ret_obj and then create a deep copy to pass back a copy to the caller, Or will it just pass back a reference?

View 3 Replies

What Option Have To Setup Concurrency If Returned Object Is A Dataset

Jan 13, 2012

I run VS 2010 Premiuim version. I do a lot of data projects and wondered what option i have to setup concurrency if the returned object is a dataset and how do i do it? Does VS 2010 have any built in options for me to take advantage of?Or if anyone else has any other ways of doing this please advise or point me to any articles.

View 4 Replies

VS 02/03 Datatable - Select Statement And It Will Go To A Datatable Object

Apr 4, 2011

I have a select statement and it will go to a datatable object, I would like to do the following

textbox1.text=datatable(first field value)
textbox2.text=datatable(second field value)
textbox3.text=datatable(third field value)

View 5 Replies

How To Add String To A Text Box, Returned From Another Form That Has A List Box

Dec 15, 2011

how to add a string item to a text box, returned from another form that has a list box?

I have two forms. on the first form I have a button which calls another form that has a List Box.

When I select the value from the list box and click on the apply button then the value should be

passed to the first form that will also have a text box. The text box should contain the value of

list box.

View 3 Replies

Cast A List Of Object To List Of Interface That Object Implements?

May 19, 2009

I am working in VB.net and have a Class, Foo, that implements an interface, IBar.I have a List of Foo's, but I need to pass a list of IBar's into a function, but I keep getting casting errors, even when I use DirectCast.My code is [code]MainWorks works, but it would be really annoying and inefficient to have to do that everywhere I want to call this function.

View 4 Replies

Converting DataTable To XML

May 8, 2012

I need help converting DataTable to XML. I have done it using LINQ but I can't get exactly as I have to. I made a picture so that you can easily understand. The XML needs to be in certain format like below so I can't just use dt.writexml(). Artist ID needs to auto number. Songs are groupped by Artist. Prefer a solution in Linq coz that's what I have used throughout the project but I coundn't manage to get what I want here. The columns names are known so you can use something like this in the code. row.Field(Of String)("title")[code] i also have some more code that will query first created xml and do the grouping but still having album="albumname" in the song element as attribute. And it should be just one query from datatable to xml.i hate having to query against xml again to just refomat it.[code]

View 2 Replies

Converting Database Rows To Columns?

Nov 7, 2011

I have a student database in ms-access format with 3 tables

1) class ( classid, classname)

2) subjects ( subjectid, classid, subjectname)

3) students (studentid, classid, studentname)

now i want to create a form to enter exam marks for the students in the following manner:

studentid, studentname, classname, subjectname1, subjectname2, subjectname3, .... subjectname-n
1, student1, class1, marks, marks, marks, marks, marks
2, student2, class2, marks, marks, marks, marks, marks
3, student3, class3, marks, marks, marks, marks, marks

how i can i convert subjectname from row to column and how to write a new table to store exam marks for this purpose.

View 3 Replies

Converting DataTable To JSON?

Feb 21, 2010

I'm trying to use the JavaScriptSerializer to work with this code. However it crashes when it reaches the last line;

Dim json As New String(sr.Serialize(dt))

I get this error message;

A circular reference was detected while serializing an object of type 'System.Reflection.Module'.

View 2 Replies

Converting Datatable To Xml Using Linq?

Apr 24, 2012

I need help converting datatable to xml using Linq. I could do it with hardcoded column names as you can see in my code .. but i need it without hardcoding it ..Example datatable ..My linq query ..

Dim xmlDoc As New XDocument(
From row In dt.AsEnumerable()
From row In dt.AsEnumerable()[code]......

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved