vote up 10 vote down star
6

hi there,

i'm currently working on a project where i have to deal with sql server 2008 geography types. As big parts of the projects uses NHibernate as ORM i wonder how much work it will be to use/extend NHibernate.Spatial with this type (as far as i can see Nh Spatial only supports the geometry type yet). Btw. are there any other .net ORM's out there that support this sql type? thanks

flag

41% accept rate
I'm looking for the same thing. Have you discovered anything yet? Whats your current solution to nhibernate and sql server 2008 geography types? – Luke Smith Jan 28 at 21:46
1  
i took Ricardo Stuven's SqlGeometry implementation from NHSpatial and extended it to work with SqlGeography type. there are still some minor bugs in it, but i can use IGeometry types and use geography as backend. I will send the code to the NHSP guys as soon as i get time to refactor/clean it up. – Joachim Kerschbaumer Jan 29 at 10:07
Cool. I look forward to seeing/using it. – Luke Smith Jan 31 at 12:59
I am looking forward to your addition to the NHSpatial project Joachim Kerschbaumer! – tobsen Feb 4 at 19:01
@Joachim - did you manage to get this done? Thanks :-) – Perhentian Sep 10 at 12:51
show 2 more comments

2 Answers

vote up 2 vote down

I don't know specifically about spatial, but you can always extend NHibernate to deal with your custom types which is quite straightforward (see NHibernate Custom Mapping Types) but the thing is that you have to explain how to deal with geography types to NHibernate (see namespace NHibernate.Type) teling NH how to convert the value back and forth to SQL.

It may not be the easiest thing in the world but can be done, many people may help you in nhusers and you will definitely learn a lot about the inner workings of an OR/M.

link|flag
vote up 0 vote down

I asked the same thing in NHUsers back in January. NHSpatial has limited support for geography types. Check the thread at NHUsers below, you can 'sort of' use Geometry types for some Geography applications.

http://groups.google.com/group/nhcdevs/browse%5Fthread/thread/752b046c0ce959b0/9596204d0dd0ff47?q=#9596204d0dd0ff47

Also see the link that Ricardo posted on the group to Isaac Kunen's blog which gives an interesting example of the nearest neighbour problem in SQL.

So basically, the answer: No NHSpatial doesn't support Geography, but you can use Geometry types for some basic geography problems (e.g distance between two points). But you're better off running a Native SQL query to get the full power of SQL Server 2008's geography types.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.