public IEnumerable <SerializedEntity> GetObjects(INativeQuerySpec querySpec, TableSchema schema) { if (querySpec != null) { throw new NotSupportedException(); } using (var bucket = GetBucket(schema)) { return(from o in bucket.Objects select new SerializedEntity(o)); } }
public bool DeleteObjects(INativeQuerySpec filter, TableSchema schema) { throw new NotSupportedException(); }
public IEnumerable <SerializedEntity> GetObjectsWithPrefetch(INativeQuerySpec filter, TableSchema schema, IEnumerable <TableSchema.Relation> prefetchRelations, out IEnumerable <Dictionary <TableSchema.Relation, SerializedEntity> > relatedEntities) { throw new NotSupportedException(); }
public QuerySpec(ICodeQuerySpec code, INativeQuerySpec native) { Code = code; Native = native; }
public object GetScalar(Aggregate aggregate, INativeQuerySpec nativeQuerySpec, TableSchema schema) { throw new NotSupportedException(); }
public IEnumerable<SerializedEntity> GetObjects(INativeQuerySpec querySpec, OrmSchema schema) { if (querySpec != null) throw new NotSupportedException(); using (var bucket = GetBucket(schema)) { return from o in bucket.Objects select new SerializedEntity(o); } }
public bool DeleteObjects(INativeQuerySpec filter, OrmSchema schema) { throw new NotSupportedException(); }
public object GetScalar(Aggregate aggregate, INativeQuerySpec nativeQuerySpec, OrmSchema schema) { throw new NotSupportedException(); }
public IEnumerable<SerializedEntity> GetObjectsWithPrefetch(INativeQuerySpec filter, OrmSchema schema, IEnumerable<OrmSchema.Relation> prefetchRelations, out IEnumerable<Dictionary<OrmSchema.Relation, SerializedEntity>> relatedEntities) { throw new NotSupportedException(); }