Beispiel #1
0
            public async Task Delete()
            {
                var student = new Student()
                {
                    Name     = "Ramin",
                    Frinends = new List <string>()
                    {
                        "John",
                        "Jack"
                    }
                };
                var res = await Connection.DeleteAsync <Student>(new Id(student.Id));

                Assert.True(res.IsValid);
            }