Skip to content

manhng83/EfCoreDeadlockTest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EfCoreDeadlockTest

Sample Project for EfCore Issue 12407
Ef Core 2.1 causes a deadlock when using in a WPF Application and calling .Wait() on an async operation.

var query = context.Authors.Include(a => a.Books);

var t = query.ToListAsync();
t.Wait();           // Deadlock
return t.Result;

Deadlock in MainWindow.xaml.cs

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages