SaveChanges使用Entity Framework 6挂起程序

时间:2014-10-29 21:17:15

标签: .net entity-framework-6

使用Entity Framework 6,调用SaveChanges会完全挂起程序。没有报告错误或任何内容。 SQL LocalDB是数据库。

Dim o As New employee
With o 
   'set some scalar properties here...
   .name="Test"
   ...

   'add set some navigation properties here...
   .parent_company=SelectedCompany
   ...
End With

_context.SaveChanges()

什么可能导致这种行为?我不明白这个简单的对象创建如何导致数据库死锁。

0 个答案:

没有答案