Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi All,
I get this error when trying to SubmitChanges() using Linq 2 Umbraco.
Provider "NodeDataProvider" does not implement a submittable pattern
Any Clue ?
here is my code item.MetaDescription = msg; _UmbracoContext.SubmitChanges();
Thanks
The NodeDataProvider is read-only. You would need to implement your own DataProvider if you want full CRUD support.
Taken from:
http://our.umbraco.org/forum/developers/extending-umbraco/11989-LINQ-2-Umbraco-%28Submit-Changes%29
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
LINQ 2 Umbraco - Provider "NodeDataProvider" does not implement a submittable pattern
Hi All,
I get this error when trying to SubmitChanges() using Linq 2 Umbraco.
Provider "NodeDataProvider" does not implement a submittable pattern
Any Clue ?
here is my code
item.MetaDescription = msg;
_UmbracoContext.SubmitChanges();
Thanks
The NodeDataProvider is read-only. You would need to implement your own DataProvider if you want full CRUD support.
Taken from:
http://our.umbraco.org/forum/developers/extending-umbraco/11989-LINQ-2-Umbraco-%28Submit-Changes%29
is working on a reply...