I\'m using Entity Framework Codefirst to create my Database. The default Primary key with the schema name dbo.pk_Jobs seems to upset access 2007 when I connect to it over OD
You can use the Key attribute to specify the parts of the primary key. So your Job class might be
public class Job { [Key] public Guid uuid{ get; set; } public int active{ get; set; } }
The data annotation attributes are defined in the System.ComponentModel.DataAnnotations namespace