AsyncPoco.Tests.Tests.Exists_Query_Does C# (CSharp) Method

Exists_Query_Does() private method

private Exists_Query_Does ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public async Task Exists_Query_Does()
        {
            var id = await InsertRecordsAsync(10);
			Assert.IsTrue(await db.ExistsAsync<deco>("id = @0", id));
			Assert.IsTrue(await db.ExistsAsync<deco>(id));
		}
        [Test]