You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/test/EFCore.Jet.IntegrationTests/Model08/Model.cs

19 lines
398 B
C#

namespace EntityFrameworkCore.Jet.IntegrationTests.Model08
{
public class File
{
public int Id { get; private set; } // PK
// Other properties
public string Description { get; set; }
}
public class GalleryImage : File
{
public string A { get; set; }
}
public class PageImage : File
{
public string B { get; set; }
}
}