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

Exists_Query_DoesNot() private method

private Exists_Query_DoesNot ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public async Task Exists_Query_DoesNot()
        {
            var id = await InsertRecordsAsync(10);
			Assert.IsFalse(await db.ExistsAsync<deco>("id = @0", id+100));
			Assert.IsFalse(await db.ExistsAsync<deco>(id + 100));
        }