I would like to use SQL Server xml type as a column type for an entity class.
According to this thread it\'s possible to map such a column to st
The problem was with my wrapper property:
[NotMapped] public XElement XmlValueWrapper { get { return XElement.Parse(XmlValue); } set { XmlValue = value.ToString(); } }
I didn't specified NotMapped attribute.