Guid tId = context.Service.Create(new new_t() { new_name = name, }); Entity t= new Entity("new_t", tId); t.Attributes["createdonbehalfby"] = new EntityReference("systemuser", onBehalfBy.Id); context.Service.Update(t);
I'm trying to update createdonbehalfby but it doesn't seem to work (code above), anyone know a way to do this?
*This post is locked for comments