step-up-labs / firebase-database-dotnet

C# library for Firebase Realtime Database.
MIT License
668 stars 168 forks source link

Hi! Can you tell me how to get an item from a collection by key? #283

Closed Gorbulev-Sergey closed 1 year ago

jaybowman commented 2 years ago

This is from an older version, but the code should be something like tthis.

var query = await _client.Child("collection name") .Child([key value])
.OnceSingleAsync();

Gorbulev-Sergey commented 1 year ago

Thank you!