public void AddTagToEntity(long entityId, string tag) { if (!tags.ContainsKey(entityId)) { tags.DefineNew(entityId); } tags.AddTo(entityId, tag); }