Hi,
I would like to know if it is possible to use sql feature layer to query a table using of course a dbgeometry column but I want to return only the column I need not the geometry column. Any idea?
Thanks.
Jm
Question about sql feature layer
Hi Jean-marie,
If I misunderstand your question please feel free to let me know.
Here I find a topic: blogs.msdn.com/b/efdesign/archive/2011/05/04/spatial-types-in-the-entity-framework.aspx
It looks using LINQ to query SQL server can get any column you want save to your local dbgeometry column.
But our API don’t support this way, we only support ExecuteQuery(string sqlStatement), you need to pass in your sql statement for query sql.
If you want to use LINQ to query, I think you need create your custom connect to SQL server then query.
Regards,
Don