Am trying to get a a Zero indexed Value
from a column in the TableAdpter but it has refused , how can i retrieve a value in the Column index Zero , below is my code :
LoginTableAdapter l = new LoginTableAdapter();
string res = l.GetData("mueat", "1234").Rows[0].ToString();
And my table which is attached to the TableAdapter
is as below , it's one column and i want to get the value t which is in a Zero index in the column access:
If we assume
l.GetData("mueat", "1234")
returns a DataTable, like so:then this:
will only give you the first row out of the DataRowCollection's indexer
As we can see on the DataRow type, it has an indexer as well, giving access to the columns in the DataRow instance.
You can now cast the object value to the correct type or call
ToString
on it to convert it to its string representation.Putting this all back together in your compact one-liner you will get: