Giter Site home page Giter Site logo

Comments (4)

JonathanMagnan avatar JonathanMagnan commented on July 28, 2024 1

In case someone is looking for this answer,

It's now possible to choose only column that will be part of the UPDATE during a BulkMerge with the OnMergeUpdateInputExpression option such as:

context.BulkMerge(list, options =>
{
	options.OnMergeUpdateInputExpression = x => new { x.PhoneNumber, x.Address };
	// options.OnMergeInsertInputExpression = x => new { x.ColumnString };
});

from dapper-plus.

JonathanMagnan avatar JonathanMagnan commented on July 28, 2024

Hello @Lajoh ,

We do not provide this options yet, we will look at it today.

Best Regards,

Jonathan

from dapper-plus.

JonathanMagnan avatar JonathanMagnan commented on July 28, 2024

Hello @Lajoh ,

We investigate this issue today but unfortunately didn't make it work yet with BulkMerge.

However, you can easily handle this scenario with BulkUpdate + BulkInsert (You must do BulkUpdate first to avoid to update inserted items).

Here is an example:

using System.Collections.Generic;
using System.Data.SqlClient;
using System.Windows.Forms;
using Z.Dapper.Plus;

namespace Z.Lab
{
    public partial class Form_Request_BulkMerge_ColumnOnly : Form
    {
        public Form_Request_BulkMerge_ColumnOnly()
        {
            DapperPlusManager.Entity<Person>("Insert_key")
                .Table("Person")
                .Key(x => x.PersonId)
                .InsertIfNotExists();

            DapperPlusManager.Entity<Person>("Update_key")
                .Table("Person")
                .Key(x => x.PersonId)
                .Map(x => new {x.PhoneNumber, x.Address});

            var list = new List<Person>();

            for (var i = 0; i < 20; i++)
            {
                list.Add(new Person {PersonId = i, FirstName = "x_" + i, Address = "x_" + i, PhoneNumber = "x_" + i});
            }

            using (var conn = new SqlConnection(My.AppConfig.ConnectionStrings.DapperPlusConnection))
            {
                conn.Open();

                conn.BulkUpdate("Update_key", list);
                conn.BulkInsert("Insert_key", list);
            }

            InitializeComponent();
        }

        public class Person
        {
            public int PersonId { get; set; }
            public string FirstName { get; set; }
            public string PhoneNumber { get; set; }
            public string Address { get; set; }
        }
    }
}

Let me know if this example can solve your problem.

Best Regards,

Jonathan

from dapper-plus.

JonathanMagnan avatar JonathanMagnan commented on July 28, 2024

Hello @Lajoh ,

This issue will be closed since it has been resolved.

Feel free to reopen it if you feel otherwise.

Best Regards,

Jonathan

from dapper-plus.

Related Issues (20)

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.