请告诉我如何从产品类别Mongo表获取所有数据并将数据作为IEnumerable返回。 提前谢谢!
public class CategoryService<ProductCategory> : EntityService<ProductCategory>
where ProductCategory: IMongoEntity
{
public IEnumerable<ProductCategory> getAllCategories()
{
var collection = this.MongoConnectionHanler
.MongoCollection
.Find<ProductCategory>("productcategory");
return collection.XXX;
}
}