我在项目中添加了一个新的ADO.Net实体数据模型,并使用了更新向导”将表添加到模型中。所选表中的五个被添加到设计图面上。其他两个表将不会添加。我在向导中选择它们,然后单击“完成”,但它们从未显示在设计图面上。
这是一个错误,还是在某些情况下(通过设计)无法将表添加到模型中?
更新:XML(* .edmx)揭示了问题。
<!--Errors Found During Generation:
warning 6013: The table/view 'FooBar.dbo.Roles' does not
have a primary key defined and no valid primary key could be inferred.
This table/view has been excluded. To use the entity you will need to
review your schema, add the correct keys and uncomment it.-->
<!--<EntityType Name="Roles">
<Property Name="role_id" Type="decimal" />
<Property Name="role_desc" Type="nvarchar" MaxLength="30" />
</EntityType>-->