Reputation: 20834
Somebody knows the answer? I'm using L2S with field ntext in my db
Upvotes: 6
Views: 1194
Reputation: 630469
In your model, you need to specify the a DataType.MultilineText annotation:
[DataType(DataType.MultilineText)]
public string MyProperty;
Upvotes: 13