Giter Site home page Giter Site logo

Comments (3)

garyhuntddn avatar garyhuntddn commented on September 15, 2024

I thought a bit more about this last night - maybe what would be better would be to have a KeyType of Immutable - as that's essentially what's going on here. My comment above about it being WriteOnly isn't correct, it's WriteOnce.

I've also just added some concurrency checking by including a RowVersion column as a KeyType which works really nicely - it's not actually a key but the effect on the SQL generated was exactly what I wanted.

from dapper-extensions.

aboy021 avatar aboy021 commented on September 15, 2024

I'm experiencing a closely related issue.
Under replication using sql server, I've been getting an error:

Failed to update database System.Data.SqlClient.SqlException (0x80131904): Updating columns with the rowguidcol property is not allowed.

If the primary key of the table is a Guid, then update should not try to update it.
This could be resolved by changing the appropriate line in SqlGenerator.Update to

var columns = classMap.Properties.Where(p => !(p.Ignored || p.IsReadOnly || p.KeyType == KeyType.Identity || p.KeyType == KeyType.Guid));

from dapper-extensions.

garyhuntddn avatar garyhuntddn commented on September 15, 2024

Tim - if I put together a pull request for this would you consider approving it? I'm using it in my own branch but wondered if it's something you'd consider for core?

Due to the way that DE creates it's parameter list for the update statement it never creates multiple parameters for items in the fields to be updated and the fields for the where - therefore we can safely say that nothing in the where clause for a single entity update should be updated.

My fix is to use:

var columns = classMap.Properties.Where( p => !( p.Ignored || p.IsReadOnly) && p.KeyType == KeyType.NotAKey ) );

Is there ever a scenario where updating a primary key is likely? The only time I can think of is if the PK is not abstract, such as a String or DateTime but even then any FK relationship is guaranteed to fail.

from dapper-extensions.

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.