I could not work with employee table of Northwind database alone.

below code throws error as

"Unable to determine composite primary key ordering for type 'Northwind.Order_Detail'. Use the ColumnAttribute or the HasKey method to specify an order for composite primary keys."

but it works fine, if I consider Order_details and other tables as well. and HasKey for OrderDetails table.

My Question is, is it not possible to work with few tables (Employee table alone in this case) using EF.

public partial class NorthwindEntities : DbContext
{
    public NorthwindEntities()
        : base("Northwind")
    {
    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);

        SetupModels(modelBuilder);
    }

    public DbSet<Employee> Employees { get; set; }
}

Anand

link|improve this question

71% accept rate
Hi! Could you show the Employee class and the SetupModels method? It's likely that Employee has a navigation property to order or order details or something. – Slauma Jul 24 '11 at 18:31
yes, you are right.. thanks – Anand Kumar Jul 25 '11 at 9:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.