|
-
Feb 5th, 2006, 04:57 PM
#1
Thread Starter
Fanatic Member
.xsd ordinal
Hi,
Using Strongly Typed dataset, I would like to refer to a column.
This is what I am doing at present:
//dsEmps is the .xsd
EmpBusRule.EmpService.dsEmps employeeDetailsData;
int intEmployeeIDColumn = employeeDetailsData.Employees.Columns[0].Ordinal;
int intFirstNameOrdinal = employeeDetailsData.Employees.Columns[2].Ordinal;
My intention is to use something like :
int intEmployeeIDColumn = employeeDetailsData.Employees.EmployeeID.Ordinal;
int intEmployeeIDColumn = employeeDetailsData.Employees.FirstName.Ordinal;
If I do this the the compiler error is:
'EmpBusRule.EmpService.dsEmps.EmployeesDataTable' does not contain a definition for 'FirstName'
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|