FirebaseClient firebaseClient = new FirebaseClient("Your FireBase Database URL");
var result = await firebaseClient.Child("Node").OnceAsync<RelatedModel>();

如何使用此代码获取 NodeId(与图像相同)?

最佳答案

要获取 id,请尝试以下操作:

FirebaseClient firebaseClient = new FirebaseClient("https://node.firebaseio.com/");
var result = await firebaseClient.Child("UsersInfo").OrderByKey().OnceAsync<RelatedModel>();

foreach (var res in results)
{
  Console.WriteLine($"{res.Key}");
}

首先获取 firebase 数据库的实例,然后添加对节点 UsersInfo 的引用。然后使用 foreachresults 中迭代并使用 id 检索 res.Key

关于c# - 如何从 C# 中的 FireBase 数据库获取 NodeId?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59409943/

10-10 12:35