Code Monkey home page Code Monkey logo

Comments (4)

fwgreen avatar fwgreen commented on May 15, 2024 2

@tanner0101 Wouldn't the ORM need a discriminator column to tell which form of Nurse you are working with? Is there a complete example of this somewhere?

from fluent-kit.

tanner0101 avatar tanner0101 commented on May 15, 2024 1

I've transferred this to FluentKit since that's where Fluent's core APIs are located (including Model).

Vapor (and all of its packages) try to avoid inheritance like the plague. Mainly because it really doesn't mix well with protocols (as can be seen in your example). Given that protocols are generally more powerful than inheritance (they are composable), we just use protocols.

I'd be interested to see more concrete examples of what you are trying to do here with sub-classing and what difficulties you are having making it into a protocol.

from fluent-kit.

fwgreen avatar fwgreen commented on May 15, 2024

Having inheritance strategies like Single Table Inheritance and others would be handy to people coming from JPA based ORMs like Hibernate. There are cases when only the behavior of the entities differ and nothing else:

class Nurse {
    var employeeID: String
    var firstName: String
    var lastName: String
    //...
}

class RegisteredNurse : Nurse {}

class PracticalNurse : Nurse {}

/*
There are tasks that can be performed by all nurses, but 
some are restricted to Registered Nurses.  
*/

This is straightforward in JPA, but I don't see how to model it using Protocols (maybe Swift 7 will have abstract classes 😄 ).

from fluent-kit.

tanner0101 avatar tanner0101 commented on May 15, 2024

This is one way you could implement that design w/ protocols:

protocol Nurse {
    var employeeID: String { get set }
    var firstName: String { get set }
    var lastName: String { get set }
    //...
}

final class RegisteredNurse : Nurse {
    var employeeID: String
    var firstName: String
    var lastName: String
}

final class PracticalNurse : Nurse {
    var employeeID: String
    var firstName: String
    var lastName: String
}

from fluent-kit.

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.