Consider following Entities
public class Supplier
{
public int Id { get; set; }
public string Name { get; set; }
public ICollection<Product> Products { get; set; }
}
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public string Category { get; set; }
public int? SupplierId { get; set; }
public virtual Supplier Supplier { get; set; }
}
As per the code above a Supplier entity can have zero or more products. In above entities the ID's are auto-generated by Entity Framework.
I'm using Odata V4 Client code generator.
Client Code:
Supplier s = new Supplier{...}
OdataContext.AddToSuppliers(s);
Product p = new Product{...}
p.SupplierId = s.Id;
OdataContext.AddToProduct (p);
OdataContext.SaveChanges();
Supplier Controller:
public async Task<IHttpActionResult> Post(Supplier supplier)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
db.Supplier.Add(supplier);
await db.SaveChangesAsync();
return Created(supplier);
}
Product Controller:
public async Task<IHttpActionResult> Post(Product product)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
db.Products.Add(product);
await db.SaveChangesAsync();
return Created(product);
}
When I saving the changes I'm getting an error message:
The INSERT statement conflicted with the FOREIGN KEY constraint.
The reason for the error is the Product
entity doesn't have the SupplierId
yet as it Database generated key.
So how can I add SupplierId
to the Product
entity while saving the record?
Can anyone help me to solve this issue?
OK, thanks for clarifying. Assuming you are using SQL Server, your Int Id columns will be identity columns by convention. A Product can have 0 or 1 supplier so approach from that perspective.
To add a new product to a new supplier you can do:
To add an existing supplier to a product: