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/Model01/Standard.cs

24 lines
598 B
C#

using System;
using System.Collections.Generic;
namespace EntityFrameworkCore.Jet.IntegrationTests.Model01
{
public class Standard
{
public Standard()
{
Students = new List<Student>();
}
// Index is supported only using fluent API
/*[Index("MultipleColumnIndex", 2)]*/
public int StandardId { get; set; }
/*[Index("MultipleColumnIndex", 1)]*/
public string StandardName { get; set; }
public string Description { get; set; }
public virtual ICollection<Student> Students { get; set; }
}
}