0
我目前使用此方法從Azure中的表中檢索一個值。如何從天藍色表中讀取單個值?
int id = 15;
List<Person> pList = await App.MobileService.GetTable<Person>().Where(
person => person.id == 15).ToListAsync();
foreach(Person pers in pList)
{
System.Diagnostics.Debug.WriteLine(pers.firstName);
}
有來自Azure數據庫檢索一個單值的更好的辦法?
太棒了! System.Diagnostics.Debug.WriteLine((等待App.MobileService.GetTable().LookupAsync(1)as Patient).firstName);'工作。非常感謝你! –
Jieqin