I’m using Visual Studio’s designer to create a typed data set, and I’ve changed one of the fields in the stored procedure to be a TEXT type. I now can’t refresh as the TEXT type is not comparable.
How do I get around this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Don’t use a Text type. You have much more flexibility using nvarchar(max) or varchar(max). This should map to a string type in your typed dataset.