Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to do something like this:

   private User PopulateUsersList(DataRow row)
        {
            Users user = new Users();
            user.Id = int.Parse(row["US_ID"].ToString());
            if (row["US_OTHERFRIEND"] != null)
            {
                user.OtherFriend = row["US_OTHERFRIEND"].ToString();
            }
            return user;
        }

However, I get an error saying US_OTHERFRIEND does not belong to the table. I want to simply check if it is not null, then set the value.

Isn't there a way to do this?

share|improve this question

4 Answers

up vote 65 down vote accepted

You should try

if (row.Table.Columns.Contains("US_OTHERFRIEND"))

I don't believe that row has a columns property itself.

share|improve this answer
+1: Thanks. This is perfect! – waqasahmed Apr 1 '10 at 20:57
if (drMyRow.Table.Columns["ColNameToCheck"] != null)
{
   doSomethingUseful;
{
else { return; }

Although the DataRow does not have a Columns property, it does have a Table that the column can be checked for.

share|improve this answer

You can use

try {
   user.OtherFriend = row["US_OTHERFRIEND"].ToString();
}
catch (Exception ex)
{
   // do something if you want 
}
share|improve this answer
+1: Thanks. Simple enough :) – waqasahmed Apr 1 '10 at 20:54
if (row.Columns.Contains("US_OTHERFRIEND"))
share|improve this answer
@Big Endian, DataRow doesn't have Columns property. – Å¡ljaker Apr 1 '10 at 20:53
this doesn't work... DataRow row does not have Columns property. – waqasahmed Apr 1 '10 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.