Hi, This library is very useful ;) Are not asynchronous methods implemented? Right? This code work: ``` var item1 = _mockContext.Object.Set<Customer>().Find(1); ``` and this code not work: ``` var item2 = _mockContext.Object.Set<Customer>().FindAsync(1).Result; ```
Hi,
This library is very useful ;)
Are not asynchronous methods implemented? Right?
This code work:
and this code not work: