Exemplo n.º 1
0
    public async Task IdTest()
    {
        var repo = new TestRepo();
        await repo.InsertOrUpdateAsync(new AzureTableItem { Id = new TableId("1", "2") });

        var item = await repo.GetAsync(new TableId("1", "2"));

        item.Should().NotBeNull();
    }