Home > Database > Mysql Tutorial > MongoDB学习笔记《三》

MongoDB学习笔记《三》

WBOY
Release: 2016-06-07 17:56:17
Original
961 people have browsed it

这一次做一些基本的操作增删改查操作 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MongoDbTestPrint{ public class Student{ private int _ID; public int ID{ get { return _ID; } set { _ID = valu

这一次做一些基本的操作增删改查操作

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MongoDbTestPrint { public class Student { private int _ID; public int ID { get { return _ID; } set { _ID = value; } } private string _Name; public string Name1 { get { return _Name; } set { _Name = value; } } private string _Sex; public string Sex { get { return _Sex; } set { _Sex = value; } } private int _Age; public int Age1 { get { return _Age; } set { _Age = value; } } } } ,香港空间,香港服务器租用,香港服务器租用

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template