Updated readme and added new sample project

This commit is contained in:
Koen Bekkenutte
2021-05-31 04:05:38 +08:00
parent 07043931f2
commit a33fbfeddf
12 changed files with 328 additions and 8 deletions

View 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; }
}
}