Reputation: 1501
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
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