Search code examples
c#asp.netentity-frameworkrepository-patternscaffolding

scaffolding template for creating repositories


I'm a new comer to the Scaffold world to build repositories creating the CRUD operations.

There are a lot of scaffolding templates ,I'm so confused which one will suit my requirement .

  • I use asp.net web forms (not asp.net MVC)
  • I use Entity Framework 6 as ORM .

I want some help to clarify the main pillars we select one scaffolding template over one and what's the proper one for my case ?

NOTE : Right now i use T4Scaffolding .


Solution

  • I think you can use T4Scaffolding, as you already do. But why are you using a "scaffold"? I created my crud app with entity framework without scaffolding anything.

    Anyway, the scaffolding tools are all very similar, so T4Scaffolding is perfect, IMHO.

    I think you can find interesting this and this.

    Let me know if you have other questions.