Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Comparing Data Row column values and string values
Message
De
10/07/2013 11:57:01
 
 
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Versions des environnements
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01578028
Message ID:
01578116
Vues:
38
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform