What is Key in Google.Cloud.Datastore.V1
问题 I'm new to this nuget package and confused with the Key class. Here is my code base on Google.Cloud.Datastore.V1 document: public long InsertMessage<T>(T iEntity) where T : IEntity<T> { var keyFactory = _db.CreateKeyFactory(Kind); var entity = iEntity.ToEntity(); entity.Key = keyFactory.CreateIncompleteKey(); using (var transaction = _db.BeginTransaction()) { transaction.Insert(entity); var commitResponse = transaction.Commit(); var insertedKey = commitResponse.MutationResults[0].Key; Logger