Code Monkey home page Code Monkey logo

Comments (6)

tonysneed avatar tonysneed commented on September 13, 2024

@wjensen I believe this may be what you're looking for: URF.Core.ApiControllers.Templates. Instructions are here.

This will scaffold API controllers that inject a unit of work interface with access to repositories. This is based on URF.Core.

from entityframeworkcore.scaffolding.handlebars.

wjensen avatar wjensen commented on September 13, 2024

Thanks for getting back to me. That's not quite what I am looking to do. I am looking to create a file for each entity type during scaffolding like:

foreach (var entityType in model.GetEntityTypes())
            {
                generatedCode = Generate(entityType.DisplayName());
                resultingFiles.AdditionalFiles.Add(new ScaffoldedFile{ Path = "SomePath.cs", Code = generatedCode});
            }

Does that make sense?

from entityframeworkcore.scaffolding.handlebars.

tonysneed avatar tonysneed commented on September 13, 2024

from entityframeworkcore.scaffolding.handlebars.

wjensen avatar wjensen commented on September 13, 2024

I am looking to auto-generate repositories (boilerplate partials) for entities which are not lookups (500 or so) and for lookups, each entity will have auto-generated a constants class mapping the PK value to the lookup value.

from entityframeworkcore.scaffolding.handlebars.

tonysneed avatar tonysneed commented on September 13, 2024

I would recommend creating a different project for each of the file types you want to generate. Then update the Class.hbs file to generate your repository class.

If this does not work for you, your next option would be to create your own implementation of ICSharpEntityTypeGenerator with a WriteCode method that generates your desired code. You would then implement IDesignTimeServices to register your ICSharpEntityTypeGenerator class.

If neither of these approaches is suitable, you might want to use the EF6 reverse engineering tools. One I like is EntityFramework Reverse POCO Generator.

from entityframeworkcore.scaffolding.handlebars.

tonysneed avatar tonysneed commented on September 13, 2024

Can re-open if you wish to continue the discussion.

from entityframeworkcore.scaffolding.handlebars.

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.