GithubHelp home page GithubHelp logo

dapper.extensions's Introduction

Dapper.Extensions

YOYOFx中使用的Dapper扩展 ###1. Get Entity:

using (var connect = GetOpenConnection())
{
    var customer = connect.Get<CustomersEntity>(1);
    var customer1 = connect.Get<CustomersEntity>(c=>c.CustomerID == 1);
}

###2. Insert Entity:

using (var connect = GetOpenConnection())
{
    int count = connect.QuerySingle<int>("select count(1) from Customers2");
    var customer = new CustomersEntity() { CustomerName = "A1", CustomerCity = "x1" , CustomerNumber = "9999"};
    long id = connect.Insert(customer);
}

###3. Update Entity:

using (var connect = GetOpenConnection())
{
     var customer = new CustomersEntity() { CustomerID = 1 , CustomerName = "A1", CustomerCity = "x1", CustomerNumber = "9999" };
      //1.更新实体,不能只更新某些字段
      bool s = connect.Update(customer);
      //2.更新一个表达式实体,保证只更新表达式中的字段值
      //IOperatorWhere<Customers2>.Where(exp).Go();
      var updater = connect.Update<CustomersEntity>(c => new CustomersEntity
      {
          CustomerName = "hello",
          CustomerCity = "x1"
      });
      bool ret = updater.Go();
}

dapper.extensions's People

Contributors

yoyofx avatar

Watchers

Jangos avatar  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.