Emrah Mehmedov
Emrah Mehmedov

Reputation: 1501

asp.net mvc 4 c# plus mongodb driver

I would like to know if i use my web app in production in shared hosting, will be there a problem to use mongodb driver c# (driver is embedded in the project or need host support for that)?

Because I'm planning to use dedicated mongodb server.

Thanks.

Upvotes: 1

Views: 441

Answers (1)

McGarnagle
McGarnagle

Reputation: 102733

The C# driver is just a set of DLLs, so you're fine.

The only thing to check is that the shared host will allow traffic over whatever MongoDB port (it uses 27017 by default, although you can change that).

Upvotes: 1

Related Questions