1

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.

1 Answer 1

1

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).

Sign up to request clarification or add additional context in comments.

2 Comments

So you are saying that .dll files are included in the project and when i upload my web app .dll (mongodb) drivers will be with my project right?
@EmrahMehmedov yes, right. You will just need to deploy the web app as normal, including your project DLL and the MongoDB driver DLLs.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.