Best way to push csv to mongo db using C#

What is the best way to insert data from csv file to Mondodb using .Net Core.
Any sample code snippet provided will be great

There are a number of solutions depending on whether or not you need to execute the upload in C#. If you don’t need to import the CSV in C# application code, the simplest solution is using mongoimport as discussed in this thread.

If you do need to execute the solution in C#, I recommend reviewing this discussion on Stack Overflow for a number of solutions to this problem, including utilizing the CSVHelper package to parse a CSV and insert records to a database in mongo and calling mongoimport from a C# console app.

Does this answer your question @Samrat_Basu?