Is there a way to get the primary key id of a newly inserted record via a OData API?
I have the below, the response is what it is? Probably not going to be able to return the Id?
private async Task<HttpResponseMessage> SaveVehicleViaAPI(Vehicle vehicle)
{
var uri = new Uri(baseAPIURL + "odata/sql_database/Vehicles");
var httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, uri);
httpRequestMessage.Content = new StringContent(Radzen.ODataJsonSerializer.Serialize(vehicle), Encoding.UTF8, "application/json");
var response = await httpClient.SendAsync(httpRequestMessage);
return response;
}