Which database would you recommend to use with C# (.NET) application?

后端 未结 13 1651
眼角桃花
眼角桃花 2021-01-05 08:38

I\'m developing a little project plan and I came to a point when I need to decide what local databse system to use.

The input data is going to be stored on webserver

13条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-05 09:06

    Pick anything that's available, but code against interfaces only, that way you can easily switch between them.

    For production, I'd say either MS SQL for large projects, (or express for mid level) simply because of the close integration with VS and Sqlite for smaller projects.

    Given the description, I would think that Sqlite would be a good choice, since it's the simplest/lowest overhead.

提交回复
热议问题