C# Firestore クラスでデータ追加

クラスの作成

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

データを追加

FSData fSData = new FSData
{
    AccessDate = Timestamp.GetCurrentTimestamp(),
    IdNumber = DateTime.Now.Millisecond,
    Name = "TEST 03"
};
;
string documentName = DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");
Google.Cloud.Firestore.DocumentReference docRef = db.Collection("users").Document(documentName);
await docRef.SetAsync(fSData);
 

コメントを残す

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

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