0

How to handle spatial data with abp.io framework (SQLServer and EF Core)? Any recommendations?

I guess one can have NetTopologySuite in the Domain project, but it does not feel DDD correct to do so.

Please tell me if you have any experiences with this combination.

kungcc
  • 1,832
  • 5
  • 25
  • 48

1 Answers1

1

Abp Framework project are just a .Net Project. you can use the NetTopologySuite like you normally use in any other project. if you don't want DDD then just create a single layer project. single layer project removes all the DDD requirements.

Here is the more info about single layer project: https://docs.abp.io/en/abp/latest/Tutorials/Todo/Single-Layer/Index?UI=MVC&DB=EF

Anto Subash
  • 3,140
  • 2
  • 22
  • 30
  • Thanks Anto, I have started to use it as it is at a DDD project structure, and think it works. Still, I think I need to replace SQLite with LocalDb to get similar behavioural. – kungcc Nov 04 '22 at 11:46