mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-20 04:25:11 +00:00
Updated readme and added new sample project
This commit is contained in:
16
samples/ReadmeSample/Entities/User.cs
Normal file
16
samples/ReadmeSample/Entities/User.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ReadmeSample.Entities
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string UserName { get; set; }
|
||||
|
||||
public string EmailAddress { get; set; }
|
||||
|
||||
public ICollection<Order> Orders { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user