C# Firestore クラスにデータを取得する

クラスの作成

[FirestoreData]
public class FSData
{
    [FirestoreProperty]
    public Timestamp AccessDate { get; set; }
    [FirestoreProperty]
    public double IdNumber { get; set; }
    [FirestoreProperty]
    public string Name { get; set; }
}
 

データの取得

Google.Cloud.Firestore.DocumentReference docRef = db.Collection("users").Document("Test02");
DocumentSnapshot snapshot = await docRef.GetSnapshotAsync();
if (snapshot.Exists)
{
    FSData fSData = snapshot.ConvertTo<FSData>();
}
 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください