views:

94

answers:

1

I want to create application which would display spatial data on Map. I'm thinking about using SQL Server spatial features but not sure how should I handle that data in C#. Is there a good library I could use for that?

A: 

Is there a good library I could use for that?

What is the "that" specifically? What you mean handling spatial data? Process, performing geometry computational operations or just displaying?

If you mean working with geometries and performing operations on geometries, you may try to use SqlGeometry and related types available for .NET in Microsoft.SqlServer.Types namespace

Speaking of ORM, you may try to use frameworks available for .NET like NHibernate

mloskot
ORM framework would be perfect
Sergej Andrejev
I updated my answer
mloskot