Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Comparing Data Row column values and string values
Message
From
10/07/2013 11:57:01
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01578028
Message ID:
01578116
Views:
39
>Do you seem how can we replace Convert.ChangeType with SafeConvert in this code
>
>
> foreach (KeyValuePair<String, String> kvp in rowValues)
>         {
>            String passedValue = kvp.Value;
>            var columnValue = bookingRow[kvp.Key];
>            Type columnType = ((DataColumn)bookingRow[kvp.Key]).DataType;
>
>            var passedObject = Convert.ChangeType(passedValue, columnType);
>            if (passedObject.Equals(columnValue) == false)
>            {
>               String cColumnValue = columnValue.ToString().Trim();
>               if (cColumnValue!=passedValue) // Double check to prevent cases of "" vs. "          "
>                  this.SaveToBookingHistory(booking_id, "M", kvp.Key, cColumnValue, passedValue, ref messageText, ref statusCode);
>            }
>         }
See my other answer
Gregory
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform