MongoDB学习笔记《三》
这一次做一些基本的操作增删改查操作 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; } } } } ,香港空间,香港服务器租用,香港服务器租用
上一篇: php静态变量用作缓存的实例教程
下一篇: php&mysql 日期操作小记