返回IEnumerable <productcategory> MongoDB.Driver

时间:2015-05-31 07:38:50

标签: c# mongodb

请告诉我如何从产品类别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;
    }
}

0 个答案:

没有答案