Hi I'm using this code and its giving me an error: entity id must be specified for update,
Any help?
private void button3_Click(object sender, EventArgs e)
{
// Update the fetched record
Entity new_Child = new Entity("new_child");
//new_Child.Attributes["new_fullname"] = "joy";
new_Child.Attributes["new_age"] = 6;
new_Child.Attributes["new_weight"] = (decimal)15; //
new_Child.Attributes["new_height"] = (double)25;
_service = GetService();
Guid g = _service.Create(new_Child);
var cols = new ColumnSet(new[] { "new_age", "new_weight", "new_height" });
_service.Update(new_Child);
}
*This post is locked for comments