I'm trying to make an app with .NET Winforms that work with Google Cloud Firestore. I need to create collection and documents in it but documents should have to ordered IDs. For example;
- Database (collection)
- T1 (document)
- T2
- T3
If i add a document to Database collection, new document id should be T4. I can get all collection data and find size of it but i think it's the worst solution. How can i solve it?