Exemplo n.º 1
0
        static void Main(string[] args)
        {
            // insert the connection strings

            var brandEntityFrameworkRepository = new EntityFrameworkRepository <Brand>();

            var brandMongoDBRepository = new MongoDBRepository <Brand>();

            brandMongoDBRepository.Insert(new Brand {
                Name = "Audi"
            });
        }