Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Checking for valid Guid in DataRow
Message
 
 
To
22/09/2008 13:16:39
Timothy Bryan
Sharpline Consultants
Conroe, Texas, United States
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 3.0
OS:
Windows XP SP2
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01349517
Message ID:
01349556
Views:
16
When you need to check for 2 NOT conditions it's always AND operator. E.g.

myValue NOT = Some Value AND myValue NOT = Some Other Value


>>>Hi all,
>>>
>>>I need to verify a DataRow has valid values and thus I am checking my PK which is a Guid.
>>>
>>>I am doing this:
>>>
>>>if ((Guid)dr["Track_Id"] != null || (Guid)dr["Track_Id"] != Guid.Empty)
>>>{
>>>
>>>}
>>>
>>>
>>>I am getting a message "Unreachable expression code detected" on the last portion of the check.
>>
>>Second expression would only be evaluated if (Guid)dr["Track_Id"] evaluated to null . I guess you intended &&......
>
>Oh, I see the point. I should turn those two around then. Thanks Viv
>
>
>if ((Guid)dr["Track_Id"] != Guid.Empty || (Guid)dr["Track_Id"] != null)
>
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform