Skip to main content

Posts

Showing posts from August, 2019

MongoDB

Download MongoDB from  https://www.mongodb.com/what-is-mongodb   Install MongoDb nuget package: MongoDB.Driver (Author: rstam.craigwilson) Service  ______________________________________________________________________ public interface IMongoService     {          Employee CreateEmployee(Employee employee);         void Delete(string id);         Employee GetEmployeeById(string id);         List<Employee> GetEmployees();         Employee Update(Employee employee);     } public class MongoService : IMongoService     {         IMongoCollection<Employee> _mongoCollection;         public MongoService(IOptions<EmpDatabaseSettings> options)         {             Options = options;          ...