views:

457

answers:

1

Somebody knows the answer? I'm using L2S with field ntext in my db

+5  A: 

In your model, you need to specify the a DataType.MultilineText annotation:

[DataType(DataType.MultilineText)]
public string MyProperty;
Nick Craver