Inheritance: IJryVideoDataEngine
Example #1
0
 public MongoSeriesDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <Series> collection)
     : base(engine, collection)
 {
     Debug.Assert(VideosCreatedProperty == "Videos.Created");
     Debug.Assert(VideosNamesProperty == "Videos.Names");
     Debug.Assert(VideosIdProperty == "Videos.Id");
     Debug.Assert(VideosDoubanIdProperty == "Videos.DoubanId");
     Debug.Assert(VideosTagsProperty == "Videos.Tags");
     Debug.Assert(VideosTypeProperty == "Videos.Type");
     Debug.Assert(VideosYearProperty == "Videos.Year");
     Debug.Assert(VideosImdbIdProperty == "Videos.ImdbId");
     Debug.Assert(VideosStarProperty == "Videos.Star");
     Debug.Assert(EntitiesIdProperty == "Entities.Id");
 }
 public MongoSeriesDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <JrySeries> collection)
     : base(engine, collection)
 {
 }
 public MongoFlagDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <JryFlag> collection)
     : base(engine, collection)
 {
 }
 public MongoVideoDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <Model.JryVideo> collection)
     : base(engine, collection)
 {
 }
 public MongoVideoRoleCollectionDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <VideoRoleCollection> collection)
     : base(engine, collection)
 {
 }
Example #6
0
 public MongoEntitySet(JryVideoMongoDbDataEngine engine, IMongoCollection <TEntity> collection)
 {
     this.Engine     = engine;
     this.Collection = collection;
 }
 public MongoJryEntitySet(JryVideoMongoDbDataEngine engine, IMongoCollection <T> collection)
     : base(collection)
 {
     this.Engine = engine;
 }
Example #8
0
 public MongoCoverDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <JryCover> collection)
     : base(engine, collection)
 {
 }
 public MongoArtistDataSource(JryVideoMongoDbDataEngine engine, IMongoCollection <Artist> collection)
     : base(engine, collection)
 {
 }
Example #10
0
 protected MongoJryEntitySet(JryVideoMongoDbDataEngine engine, IMongoCollection <T> collection)
     : base(engine, collection)
 {
 }