如果字符串长度超过varchar(255)长度,我想删除字符串字符,并将其保存在c#中的数据库中
我找不到任何解决方案。
string test.RatingItemName="hshhhdhhdshdsdsddssdsdsghdsh";
if (test.RatingItemName > varchar(255))
{
//trim the extra characters after varchar(255)
}
答案 0 :(得分:6)
只需使用substring
。试试:
string test.RatingItemName="hshhhdhhdshdsdsddssdsdsghdsh";
if(test.RatingItemName.Length>255)
{
test = test.RatingItemName.Substring(0,255);
}