Click here to Skip to main content
15,880,972 members
Articles / Database Development / NoSQL

Using MongoDB with the Official C# Driver

Rate me:
Please Sign up or sign in to vote.
4.87/5 (28 votes)
24 Oct 2011CPOL6 min read 152.1K   3.9K   55  
Introduces how to use MongoDB in your ASP.NET MVC project using the official C# driver.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Driver;
using MongoDB.Bson;

namespace IntroMongo.Models
{
    public class User
    {
        public User()
        {
            Remarks = new List<Remark>();
        }

        public ObjectId id { get; set; }
        [BsonElementAttribute("firstname")]
        public string FirstName { get; set; }
        [BsonElementAttribute("lastname")]
        public string LastName { get; set; }
        [BsonElementAttribute("age")]
        public int Age { get; set; }
        [BsonElementAttribute("createdate")]
        public DateTime CreateDate { get; set; }
        [BsonElementAttribute("remarks")]
        public IList<Remark> Remarks { get; set; }

        public string GetFullName()
        {
            return String.Format("{0} {1}", FirstName, LastName);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Turkey Turkey
I am interested in innovation and creativity in software development and passionate in learning new stuff.

Comments and Discussions