0
votes
2answers
139 views
Projecting aggregates together with Entity using NHibernate
I have a pretty standard Orders table and an associated OrderRows table, say:
Orders
[id] INTEGER
[name] ...
OrderRows
[orderId] INTEGER
[quantity] INTEGER
[unitPrice] SMALLMONEY …
3
votes
5answers
120 views
Adding a projection to an NHibernate criteria stops it from performing default entity selection
I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of availabl …
1
vote
1answer
68 views
Eclipse RCP - Internals of projection (folding) service
I need to make custom text folding as described here: http://stackoverflow.com/questions/1017375/can-i-merge-syntax-coloring-and-folding-or-projection-colored-from-master-docume
I' …
0
votes
1answer
55 views
NHibernate search projection returning null values
I have a property on an indexed object:
[Field(Index = Index.Tokenized, Store = Store.Yes)]
public string SearchableContent { get; protected set; }
If i examine my index with Lu …
0
votes
0answers
35 views
NHibernate Criteria using Projections for Substring with in clause
I had a scenario in Oracle where i neeed to match a substring part of column with a list of values. i was using sqlfunction projection for applying the substring on the required co …
3
votes
1answer
101 views
OpenLayers Google Maps Projection Problem w/ KML
Hi. This is my first time on stackoverflow and working with Openlayers & Google Maps.
I've been browsing different forums & sites, including OpenLayers.org, to solve my i …
0
votes
2answers
232 views
How to call fromLatLngToDivPixel in Google Maps API V3?
I know that method exists and is documented, but I don't know how to get an MapCanvasProjection object.
0
votes
1answer
81 views
Function for perspective projection of a matrix in C++
Hi,
Does anyone have a function that returns the perspective projection of a 3x3 matrix in C++?
Matrix Perspective()
{
Matrix m(0, 0, 0); // Creates identity matrix
// Per …
0
votes
1answer
92 views
Use fewer columns on SQL query through Hibernate Projections on Entity with ManyToOne relation
I'm trying to build a smaller SQL, to avoid the "select * from A" that is being build by default for hibernate Criteria.
If I use simple fields (no relation), through "Transformer …
0
votes
0answers
28 views
Data list management and recycling for telesales database
We use a custom database for agents to call on in a call centre, each month a new data list is loaded in and each day some of these records along with some previous data list recor …
0
votes
2answers
59 views
How do i use perspective projection in this library
i found a library called pyeuclid and it seems to do what i want in respect to 3D math.
it contins a 3D vector class and a 4X4 matrix class capable of transformations like rotate, …
0
votes
1answer
112 views
Hibernate: Projection of a many-to-one in a Criteria
Hi all,
I am playing around with the hibernate Criteria API for the first time recently.
I was trying to do the equivalent of this HQL
"select t.userTbl from Task t"
userTbl pr …
0
votes
0answers
48 views
Get X Y from lat lon in ozi calibrated map
I have some .map OZI calibrated maps. From those .map, I can get some calibration points (x y in the jpeg picture + lon lat in WGS84).
MMPXY,1,142,142
MMPXY,2,5217,142
MMPXY,3,521 …
1
vote
1answer
104 views
Efficiency of perspective projection vs raytracing/ray casting
I have a very general question. I wish to determine the boundary points of a number of objects (comprising 30-50 closed polygons (z) each having around 300 points(x,y,z)). I am wor …
0
votes
5answers
136 views
Show lat/lon points on screen, in 3d
It's been a while since my math in university, and now I've come to need it like I never thought i would.
So, this is what I want to achieve:
Having a set of 3D points (geographic …
