mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-19 03:55:11 +00:00
17 lines
322 B
C#
17 lines
322 B
C#
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; }
|
|
}
|
|
}
|