I have a schema (StatusMaster) to store some master data. Also I have another transactional schema (Person). Is it possible to create a logical reference with the status code field in the transactional schema with master schema.
StatusMaster- StatusCode, StatusMessage
Person - PersonId, PersonName, StatusCode.
Just for the understanding. If I create a master status codes in the my master schema. And add field(status code) in my transactional schema. Hence all the codes created in the master schema will only be accessible in the transactional schema field? hope you understood my question.
Hi, we are facing a peculiar case with PUT api request. We have schema person(Id, Name, Address, Phone). For creating a record we are using POST verb and passing all the fields. However, in case of update we are passing the required field to be updated (eg:phone) rest as empty. In this case, the other fields are getting overwritten as empty.
Method :
[Put("/person/{id}?publish=true")]
Task<ApiResponse> UpdatePersonAsync(string id, Person request);