Modify documents using Fluent API
Hi I want to modify the dynamic column value? App.WorkWith() .Documents() .Where(d => d.Title == "PsDocument") .ForEach(i => i.SetValue("PStatus", "True"); its not updating. ) .SaveChanges(); please send me the syntax for this. Thanks Jmr
Hi Jmr,
I performed a test using the code below and the value gets saved correctly
App.WorkWith().Documents().ForEach(itm => itm.SetValue("test", "newvalue")).SaveChanges();
Regards,
Ivan Dimitrov
the Telerik team