Click here to Skip to main content
15,900,378 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a strongly typed dataset that we changed one of the columns from int32 to string. Now when the dataset reaches the middle layer, the column is null.

I checked the column right before we call the middle layer and the value is fine. I check it again as soon as we reach the middle layer and the value is now null. All other columns work fine - including int32, string and date, its just this one column that we changed the type to string on.

Any ideas???
Posted
Comments
Henry Minute 10-Nov-10 15:07pm    
The only thing that springs to mind is that something in the middle layer still thinks it is an int32. If you use the Find All References feature, from the editor context menu, you could have the enjoyable task of going through them all to check. :)

1 solution

Henry, thanks for the reply. I found where it was still referenced as a Int32, you got me on the right track! thanks again!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900