機能を使用している .NET 4.5 プロジェクトがありasync/await
ます。
await ステートメントの後で変数参照を検査/クイックウォッチしようとすると、次のようになります。
The name 'id' does not exist in the current context
これを修正してデバッグできるようにする方法を知っていますか?
編集 - これがコードです
[Fact]
public async Task works_as_expected()
{
var repo = Config.Ioc.GetInstance<IAsyncRepository<Customer>>();
var work = Config.Ioc.GetInstance<IUnitOfWork>();
Customer c= new Customer()
{
FirstName = "__Micah",
LastName = "__Smith_test",
DateCreated = DateTime.Now,
DateModified = DateTime.Now,
Email = "m@m.com",
Phone = "7245551212"
};
var id=await repo.Insert(c);
// i can't inspect the value of id
Assert.True(id > 0);
}