BSON文档已达到16 MB的限制,因此我被迫使用GridFs API。我正在使用C#驱动程序插入文档:-
public bool Add(TEntity entity)
{
try
{
*//Generating the ID of the BSON Document , need no change*
entity.ID = (new IntIdGenerator(entity.GetType().Name)).GenerateId(mongoDB.DataBase);
*//Inserting the Document , need to replace with GridFs API*
mongoDB.Collection.InsertOne(entity);
return true;
}
catch (Exception ex)
{
throw new DBException(ex.Message,ex);
}
}
我想替换代码以使用GridFs库上载/下载文档。我在互联网上发现的所有内容都是上传jpg图片和视频。 如果社区中有人可以指导我,请问我现在已经有好几天了。
谢谢