Another \'Entity Type \'x\' has no key defined\' question, but I\'ve set the [Key] attribute on a property so I\'m a bit confused.
[Key]
Here\'s my entity and con
To help clarify, this line:
public string GMCNumber;
needs to become:
public string GMCNumber { get; set; }