Giter VIP home page Giter VIP logo

Comments (5)

JonathanMagnan avatar JonathanMagnan commented on June 1, 2024

Hello @LukeTOBrien ,

HasNoKey

We will look if that's possible for the HasNoKey. Obviously, the same restriction will happen (you can select but you cannot insert, update, or delete.

Parameterless Constructors

As for the second, it looks to be harder. What if there is more than one constructor with a parameter? Which one do we take?

We need a way to be able to create a new instance of this class. For example, a factory that you tell us how to create it. We will look at it and try to propose a solution if that's possible to support this.

from entityframework-classic.

LukeTOBrien avatar LukeTOBrien commented on June 1, 2024

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 1, 2024

Hello @LukeTOBrien ,

We tried for the HasNoKey but more we advance on this request, more we discover that we have more code to modify which might have some side impact. The core of EF6 was not been built to support entity without a key.

However, one easy solution on your side would be:

  • Add a property ID of type Guid in your entity
  • Return in your view a new column NEWID() AS ID

Is that a viable solution for you?

from entityframework-classic.

LukeTOBrien avatar LukeTOBrien commented on June 1, 2024

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 1, 2024

Depending on if you wish to go in some "hack" solution or not you can also use an interceptor and replace some part of the command text.

If the command text contains a SELECT and your view name, then you replace the first SELECT statement by "SELECT NEWID() AS ViewKeyID"

SELECT NEWID() AS ViewKeyID, Column1, Column2, Column3
FROM ...
WHERE ...

Might not be a good long term solution however, it really depends on your requirement.

from entityframework-classic.

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.