mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-20 12:35:12 +00:00
Updated readme and added new sample project
This commit is contained in:
12
samples/ReadmeSample/Entities/OrderItem.cs
Normal file
12
samples/ReadmeSample/Entities/OrderItem.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace ReadmeSample.Entities
|
||||
{
|
||||
public class OrderItem
|
||||
{
|
||||
public int OrderId { get; set; }
|
||||
public int ProductId { get; set; }
|
||||
public int Quantity { get; set; }
|
||||
|
||||
public Order Order { get; set; }
|
||||
public Product Product { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user