Hi, I'm learning Entity Framework under VC# 2010. I have created a simple table for learning purposes, one of the fields is "id" type integer, indentity set to true. I've generated Entity Data Model from that table and connected it with dataGridView. The problem is that it doesn't auto increment - each inserted row wants to be id=0 (which is impossible of course, since id must be unique)
what am I doing wrong? how should I configure EF or the SQL db itself?
thanks