标签: c# mongodb
public void AddRange(IEnumerable<T> newRecords) { _mongoDatabaseStorageService.WithRecords<T>(e => e.InsertManyAsync(newRecords).Wait()); }
newRecords有多大?我的意思是我可以将多少元素设置为InsertManyAsync()并且具有最佳性能(1000,10 000,100 000)任何建议?
newRecords
InsertManyAsync()