we cannot update field "ownerid" from Microsoft.PowerPlatform.Dataverse.Client0.5.X by following code. However, when we use Microsoft.PowerPlatform.Dataverse.Client0.4.5, field "ownerid" can be update. any expanlation?
var cdsConnection = "xxxxxxxxx"
IOrganizationService _organizationservie = new ServiceClient(cdsConnection);
Entity entity = new Entity("a");
entity["new_name"] = "entityName";
entity["ownerid"] = new EntityReference("systemuser", new Guid("bc05679c-1911-ec11-b6e6-000d3a8039dd"));
_organizationservie.Create(entity);