Entity Framework 6
Installation
dotnet add package Structr.EntityFrameworkUsage
Auto-auditing
public class Issue : Entity<Issue, int>, ICreatable
{
public string Name { get; set; }
public string Description { get; set; }
public DateTime DateCreated { get; set; } // It's an auditable property from "ICreatable".
}Auto-configure entity types
Method name
Description
Property name
Property type
Description
Property name
Property type
Description
Property name
Property type
Description
Pagination
Last updated