Giter VIP home page Giter VIP logo

Comments (6)

zhl11b avatar zhl11b commented on July 2, 2024

this is a bug,I hava same situation.

from genny.

gitmonster avatar gitmonster commented on July 2, 2024

same here. has anyone a solution?

from genny.

zhiqiangxu avatar zhiqiangxu commented on July 2, 2024

@stdatiks @zhl11b @gitmonster https://github.com/zhiqiangxu/gg can do such jobs with more accurate control:

cat source.go:

package xmpl

import (
	"github.com/jmoiron/sqlx"
)

type Type interface{}

type Types []Type

const Table = "table"

func GetTypes(db *sqlx.DB) (Types, error) {
	result := Types{}
	err := db.Select(&result, "SELECT * FROM " + Table + ";")
	return result, err
}

Then gg -i source.go -t Type=Operation -c Table='"operation"' -d GetTypes=GetOperations will output:

package xmpl

import (
	"github.com/jmoiron/sqlx"
)

type Types []Operation

const Table = "operation"

func GetOperations(db *sqlx.DB) (Types, error) {
	result := Types{}
	err := db.Select(&result, "SELECT * FROM "+Table+";")
	return result, err
}

from genny.

nsemikov avatar nsemikov commented on July 2, 2024

@zhiqiangxu no, thanks

from genny.

rmccrystal avatar rmccrystal commented on July 2, 2024

Running into the same issue. I tried something like this:

//go:generate genny -in=$GOFILE -out=gen-$GOFILE -tag=generate gen "Model=Student,Event,Location model=student,event,location"

but it made functions for every combination.

from genny.

rmccrystal avatar rmccrystal commented on July 2, 2024

One workaround I can think of is having a generate tag for each type, for instance:

//go:generate genny -in=$GOFILE -out=student-gen.go -tag=generate gen "Model=Student model=student"
//go:generate genny -in=$GOFILE -out=event-gen.go -tag=generate gen "Model=Event model=event"
//go:generate genny -in=$GOFILE -out=location-gen.go -tag=generate gen "Model=Location model=location"

but something cleaner might be nice. Considering this project hasn't been updated in a while and go2 is coming soon, this is probably never going to be fixed :/

from genny.

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.