Giter VIP home page Giter VIP logo

Comments (6)

JoonasC avatar JoonasC commented on July 17, 2024

AFAIK, Ktorm doesn't currently support many to many relations out of the box.
I usually work around this by having a function, which returns a list through a query.
So in your case it would be:

interface Recipe: Entity<Recipe>{
    val id: Int
    val name: String
    fun getTags(): List<Tag> = TagRecipes.findList { it.idRecipe eq id }
}

from ktorm.

JoonasC avatar JoonasC commented on July 17, 2024

On another note, you might want to change your TagRecipes joining table schema to use references (foreign keys), instead of manually setting the ids in your code. https://ktorm.liuwj.me/en/entities-and-column-binding.html#Column-Binding

from ktorm.

sliya avatar sliya commented on July 17, 2024

Ok, thanks

from ktorm.

vincentlauvlwj avatar vincentlauvlwj commented on July 17, 2024

Comparing to writing a function, I'd prefer using a property with a custom getter:

interface Recipe: Entity<Recipe>{
    val id: Int
    val name: String
    val tags get() = TagRecipes.findList { it.idRecipe eq id }
}

from ktorm.

DavidGrinberg avatar DavidGrinberg commented on July 17, 2024

Now that findList is deprecated in favor of database.sequenceOf(), what is the suggested way to do this?

from ktorm.

vincentlauvlwj avatar vincentlauvlwj commented on July 17, 2024

@DavidGrinberg Here is our discussions about this problem #73

from ktorm.

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.