Change with this submission
Fixes # https://github.com/aspnet/MusicStore/issues/105
This commit is contained in:
parent
8c7bc1a9c8
commit
047db6d5f4
|
|
@ -25,7 +25,7 @@ namespace MusicStore.Models
|
|||
{
|
||||
builder.Entity<Album>().Key(a => a.AlbumId);
|
||||
builder.Entity<Artist>().Key(a => a.ArtistId);
|
||||
builder.Entity<Order>().Key(o => o.OrderId).StorageName("[Order]");
|
||||
builder.Entity<Order>().Key(o => o.OrderId).StorageName("Order");
|
||||
builder.Entity<Genre>().Key(g => g.GenreId);
|
||||
builder.Entity<CartItem>().Key(c => c.CartItemId);
|
||||
builder.Entity<OrderDetail>().Key(o => o.OrderDetailId);
|
||||
|
|
|
|||
Loading…
Reference in New Issue