Example #1
0
        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));
            }
        }
Example #2
0
 public bool DeleteObjects(INativeQuerySpec filter, TableSchema schema)
 {
     throw new NotSupportedException();
 }
Example #3
0
 public IEnumerable <SerializedEntity> GetObjectsWithPrefetch(INativeQuerySpec filter, TableSchema schema, IEnumerable <TableSchema.Relation> prefetchRelations, out IEnumerable <Dictionary <TableSchema.Relation, SerializedEntity> > relatedEntities)
 {
     throw new NotSupportedException();
 }
Example #4
0
 public QuerySpec(ICodeQuerySpec code, INativeQuerySpec native)
 {
     Code = code;
     Native = native;
 }
Example #5
0
 public object GetScalar(Aggregate aggregate, INativeQuerySpec nativeQuerySpec, TableSchema schema)
 {
     throw new NotSupportedException();
 }
Example #6
0
        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);
            }
        }
Example #7
0
 public bool DeleteObjects(INativeQuerySpec filter, OrmSchema schema)
 {
     throw new NotSupportedException();
 }
Example #8
0
 public object GetScalar(Aggregate aggregate, INativeQuerySpec nativeQuerySpec, OrmSchema schema)
 {
     throw new NotSupportedException();
 }
Example #9
0
 public IEnumerable<SerializedEntity> GetObjectsWithPrefetch(INativeQuerySpec filter, OrmSchema schema, IEnumerable<OrmSchema.Relation> prefetchRelations, out IEnumerable<Dictionary<OrmSchema.Relation, SerializedEntity>> relatedEntities)
 {
     throw new NotSupportedException();
 }
Example #10
0
 public QuerySpec(ICodeQuerySpec code, INativeQuerySpec native)
 {
     Code   = code;
     Native = native;
 }