private void Init() { IndexKeysBuilder keys = IndexKeys.Ascending("metadata.directory_name"); IndexOptionsBuilder options = IndexOptions.SetName("directory_name").SetBackground(false); MongoGridFS mongoGridFs = GetGridFS(); mongoGridFs.EnsureIndexes(); mongoGridFs.Files.EnsureIndex(keys, options); }