Somebody knows the answer? I'm using L2S with field ntext in my db
有人知道答案吗?我在我的数据库中使用带有字段ntext的L2S
1 个解决方案
#1
12
In your model, you need to specify the a DataType.MultilineText annotation:
在模型中,您需要指定一个DataType.MultilineText注释:
[DataType(DataType.MultilineText)]
public string MyProperty;
#1
12
In your model, you need to specify the a DataType.MultilineText annotation:
在模型中,您需要指定一个DataType.MultilineText注释:
[DataType(DataType.MultilineText)]
public string MyProperty;