0
votes
0answers
30 views

GAE python projection query of GeoPtProperty does not work

Creating a model with GeoPtProperty, but projection query does not work on GeoPtProperty. class MapModel(ndb.Model): ltpos = ndb.GeoPtProperty("lt", indexed=True) rbpos = ndb.GeoPtProperty("rb", ...
1
vote
0answers
76 views

On Orchard CMS, how can I display a message when the query returns no records for a projection

Using the admin panel on Orchard CMS I've created the following: A content type called CalendarEvent, it contains several fields including the EventDate; A query that has 2 filters, one by the ...
0
votes
1answer
51 views

Google App Engine projection query returns 0 results

I am trying to perform a projection query in order to fetch several properties from each entity in my datastore of over ten thousand entities. I have read and followed the documentation, but my query ...
7
votes
5answers
101 views

How to modify only one or two field(s) in LINQ projections?

I have this LINQ query: List<Customers> customers = customerManager.GetCustomers(); return customers.Select(i => new Customer { FullName = i.FullName, Birthday = i.Birthday, ...
0
votes
2answers
188 views

nHibernate aggregate query

I'm attempting to put the following SQL query into an nHiberate QueryOver statement and I'm failing miserably. Select top 15 percent People.personId ,People.Name ,SUM(Marks.Score) from ...
3
votes
1answer
494 views

Projection on a MongoDb Query using Spring data and QueryDSL

I have a Spring MVC/Spring Data / Mongo DB application. I have setted up my environement according the the spring data documentation and my repositories work fine (I can execute queries with ...
8
votes
1answer
584 views

Orchard Query List Rendering - Remove ul li

I am using the latest version of Orchard and have created a projection widget of three articles. I would like to display them in source terms directly after eachother: ...
1
vote
1answer
378 views

Orchard Projection Widget with pager issue [closed]

I'm working on a website made with Orchard CMS. I put a Projection Widget on a page with a custom query and it works perfectly but if there is a pager on that page and I click to another page (not to ...
0
votes
3answers
2k views

PROJECTION in vertica database

Could someone explain me the concept of PROJECTION in vertica database with an example query?
0
votes
2answers
2k views

criteria.setProjection(Projections.rowCount()) with Hibernate produces unexpected result

We are using hibernate 3.3 for our application and facing this weired problem in which Criteria criteria = getSession().createCriteria(table.class); criteria.setProjection(Projections.rowCount()); ...
1
vote
1answer
266 views

How to handle projections in RavenDB

Given domain model... public class Entity { public int Id { get; set; } public Category Category { get; set; } } public class Category { public string Title { get; set; } } ... I want ...
5
votes
2answers
3k views

Grails Criteria projections on joined table

I have an issue with grails criteria builder, I want to do a projection on a column that is on a table that is in one-to-many relation to parent table example: Car.createCriteria() { projections ...