I could not find anything on the query expressions page that answered my question. In short, I can update any SQL Server data column except those that are of type XML. The sample code below differs from my actual code only in the names of the columns.
let update () : unit =
let dbctx = DBSchema.GetDataContext() // The DBSchema type has already been defined as a SimpleDataContextType
query {
for row in dbctx.My_Table do
select row
}
|> Seq.iter (fun s ->
s.IntCol <- 10 // Works
s.VarcharCol <- "Varchar value" // Works
/////
s.XmlCol.Add(new XElement(XName.Get "ChildNode")) // Does not work!
/////
let x = s.XmlCol
x.Add(new Xelement(XName.Get "ChildNode"))
s.XmlCol <- x // Still does not work!
/////
dbctx.DataContext.SubmitChanges())
The XML column in SQL Server never changes. It remains the same, even when the other columns change as indicated.
Is there a different recommended way to update SQL Server XML columns from F#?
Thanks in advance for your help.