标签: entity-framework code-first
这是我的模特:
public class Question { [Key] public int QuestionId { get; set; } public Theme theme { get; set; } public string QuestionName { get; set; } public IList<Alternatives> alternatives { get; set; } }
我还能做什么才能知道这是关键?