4
Answers

Xamarin Forms With Firebase

kiran n

kiran n

4y
622
1
Hi am using  Firebasedatabase.net V 4.0.5 in Xamarin Forms
I am able to insert update records very fast but while ferching single recrod it is taking  above 6 sec 
This is my code: 
var pricelist = Task.Run(async () =>
(await firebase.Child("Price").OnceAsync<Price>())
.Where(L => L.Key == key
).ToList()
).Result;
 
 
this is happening only in Xamiarn.Forms, Any one please help on this
Answers (4)