GithubHelp home page GithubHelp logo

zaabee.mongo's Introduction

Zaabee.Mongo

Mongo repository.

QuickStart

NuGet

Install-Package Zaabee.Mongo

Example

Model

public class TestModel
{
    public Guid Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
}

Initialize the client(It is recommended to store a MongoClient instance in a global place, either as a static variable or in an IoC container with a singleton lifetime.)

var mongoClient = new ZaabeeMongoClient("mongodb://TestUser:[email protected]:27017/TestDB","TestDB");

Add

mongoClient.Add(model);
mongoClient.AddRange(models);

Delete

mongoClient.Delete(model);
mongoClient.Delete<TestModel>(model => names.Contains(model.Name));

Update

model.Name = "banana";
mongoClient.Update(model);
mongoClient.Update(() => new TestModel
            {
                Age = 22,
                Name = "pear"
            },
            p => names.Contains(p.Name);)

Query

var query = mongoClient.GetQueryable<TestModel>();
var result = query.First(p => p.Name == "pear");
var result = query.Where(p => names.Contains(p.Name)).ToList()

Notice1:The Zaabee.Mongo will priority select the property with BsonIdAttribute as the Primary Key.If not found,the property witch named "Id"/"id"/"_id" will be follow.

Notice2:TableAttribute in System.ComponentModel.Annotations can be used to mapping the document name.

zaabee.mongo's People

Contributors

mutuduxf avatar wyman25 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.