sql server - SQL TEXT type in Dataset Designer -
I am using Visual Studio Designer to create a type data set, and I change the stored field in one The process given is that I can not refresh to be a text type because the comparison of the text type is not comparable.
How do I see it?
Do not use a text type. You have more flexibility by using nvarchar (max) or varchar (max). This should map the string type to your typed dataset.
Comments
Post a Comment