ASP.NET MVC Scaffolding is a scaffolding package for quickly generating a basic outline of your software that you can then edit and customise.
0
votes
1answer
17 views
Passing parameters to method in MvcScaffolders
I am passing values to first two parameters of T4Scaffolding.Scaffolder. But it does not work what I excepted.
This is the powershell script file. Lets give it a name as Test.ps1
...
0
votes
0answers
28 views
How scaffold Durandal, Breeze in SPA app with VS 2012
I'm starting to develop an application based on Hot Towel project template. The question is how I can scaffold Durandal?
I want to perform code generation like mvc scaffolding, but for SPA using Hot ...
0
votes
2answers
35 views
Bad idea to manually edit a scaffolded view?
I scaffolded a new MVC controller, along with a corresponding view and repository for an IEnumerable collection of a POCO class. In the resulting view is a table that will list every entry in the ...
3
votes
0answers
58 views
Get metadata of model (TableName) in mvc4 Using t4 Scaffolding
Using MVC4 and T4 Template(Scaffolding)
I am creating a model in mvc4 and specify the table name in DBContext.
1)I need to get the table from Dbcontext against model name.
2)Need to get value from ...
0
votes
1answer
48 views
Code generation for .Net MVC 4.5?
I really hope that this isn't a duplicate post somewhere else on SO but I've searched long and hard and I'm coming up blank.
In PHP if you used a framework like CakePHP you could "bake" your project ...
0
votes
0answers
37 views
How can I achieve following using MVC scaffolding?
I have an SQL Server 2008 database.
All tables having a GUID as the primary key, and they are NOT auto-generated. Rather, I want my code to generate it and pass it in INSERT operation.
Some of the ...
0
votes
1answer
33 views
Get The Table Name Of Model In T4 Template
I am using MVC4 ,T4 Scaffolding and EF5.
I Created a model,
namespace wbtest.Models
{
[Table(name: "Pay_Employees_Mst", Schema = "Test")]
public class Employee
{
public int EMPLOYEE_ID { get; set; ...
0
votes
0answers
89 views
Setting Selected Value in DropDownLIstFor in MVC 4
I am using MVC4 and t4 scaffolding.
For Dropdown list Binding i added in view
@Html.DropDownListFor(model => model.PAY_EMPLOYEE_MST1ID, ((IEnumerable)ViewBag.PossiblePAY_EMPLOYEE_MST1).Select(option ...
0
votes
0answers
16 views
Any way to make MvcScaffolding available to multiple solutions without installing in each?
Say you have 20 solutions and you would rather not install MVC Scaffolding in all 20 solutions. Is there a way to use the Nuget_Profile.ps1 file ($profile) to make available MVC Scaffolding when one ...
1
vote
2answers
36 views
MvcScaffolding and Hinting to find Enums and related classes
So I've got a Deeply connected POCO that I've written using EF5/Code First, it has one-to-one, and one-to-many relationships with a number of classes and Enum properties for things like Gender, ...
1
vote
0answers
155 views
Add Controller database error in ASP.NET MVC 4
When using the Add Controller helper/scaffolder with Entity Framework CRUD integration, I get the following error:
Unable to retrieve metadata for 'MyApp.Models.MyModel'. Cannot attach the file
...
0
votes
0answers
31 views
How to alter the scaffolding output folder?
I can't seem to determine if the -Folder option was removed from the MvcScaffolding package for ASP.NET MVC. These two links indicate that it was used for altering the output folder for the items ...
0
votes
0answers
35 views
Confused with MVC scaffolding
I'm learning MVC3. There is something I'm trying from many hours and now I think I'm totally lost.
I created a database first, then generated Models from it. Now I wanna know if it is possible to use ...
0
votes
1answer
239 views
MVC Scaffolding with Repository Pattern - Saving children objects as a transaction
I have been scouring forums and repository pattern blogs for some clear direction on how I should be coding my project and I'm stuck. Any help or guidance from you guys would be much approciated :)
I ...
0
votes
1answer
26 views
Nuget error after adding AzureCloudServce to existing MVC4 app
I have an MVC 4 application that I want to convert to an Azure Cloud Service. These are the steps I took:
Update-Package to get everything on the latest
I followed the steps at this blog
Build ...
0
votes
0answers
31 views
Is there a way to generate controllers and Views from non EF Classes?
I am used to creating controllers and Views from EF POCO classes, and this is very useful to create an initial working page. However now I would like to generate a controller and View from a Class ...
1
vote
1answer
428 views
Uploading Files into Database with ASP.NET MVC
I want to give a facility on my form for user to upload files and save in Database.
How is this done in ASP.NET MVC.
What DataType to write in my Model Class. I tried with Byte[], but during the ...
0
votes
1answer
45 views
T4Scaffolding access generic collection T properties
Given the following class:
public class Post
{
public Post()
{
Tags = new List<Tag>();
}
public int Id { get; set; }
// ...more properties...
public virtual ...
1
vote
0answers
112 views
MVC Scaffolding - context.Save() is trying to update Foreign Key table
I have been searching as to why my problem is happening and I'm stumped. Not sure if it's how I did my data annotations or what... tried several things, now just hoping it's something one of you ...
1
vote
0answers
93 views
ASP.Net MVC Code Templates not recognising model changes
I'm using some customised Code Templates in my MVC project for scaffolding. I've done this by putting them in a folder my project called \CodeTemplates\AddView. I use them by going 'Add View', and ...
0
votes
1answer
153 views
MVC4 - How to rearrange generated fields created by Scaffolding
I have a .cshtml file created by MVC4 scaffolding that looks something like this:
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
...
1
vote
0answers
201 views
MVC4 Scaffolding, DBContext in different assembly
I've been trying to scaffold out a DBContext class (Code first), which resides in a different assembly with the reference added to the current MVC project.
VS2012 is giving me a message that says ...
0
votes
1answer
495 views
The term 'scaffold' is not recognized as the name of a cmdlet, function, script file, or operable program
I've been developing an ASP.NET MVC 4 project for a while now and I've been using the "MVCScaffolding" package successfully but a few days ago I noticed that when creating a new controller for example ...
0
votes
0answers
45 views
Is there a list of all scaffolding commands and parameters? And a list of all attributes available validation, binding etc
I can find a mention here and a mention there but I have yet to find a complete list
of commands and options available in the scaffolding feature via nuGet.
Like I think there must be a way from the ...
0
votes
0answers
27 views
Scaffold my own Column EDF
Can i somehow scaffold an extra column not originally in the table whose code was generated using EDF.
I want to then monitor events on the column.
I will not have an insert/update view for the ...
0
votes
2answers
136 views
How to change project and folder where MvcScaffolding generates controllers, views and repositories
Is there any possibilities to change default projects and folders where MvcScaffolding generates repositories, views and controllers?
0
votes
0answers
51 views
How to implement Scaffolding in Multiple Project Enviorenment
I have 2 MVC projects in same solution.Like UI.Admin and UI.AdminSCF. The UI.AdminSCF is lately added project.I have to implement scaffolding in UI.AdminSCF.
I Tried to execute scaffolding command ...
0
votes
1answer
88 views
MVC 4 Scaffold Delete Issue with ID
I created scaffold delete view for delete but it doesn't work. When debugging I found that It doesnt pass the correct ID of the record to controller. Always it passes 0 as the ID and result is an ...
1
vote
0answers
255 views
MVCScaffolding, Entity Framework Model First, many-to-many scaffolding
I am using Entity Framework Model First. There are 2 entities in my Model..
User
Role
I want to use MVC scaffolding (using VS 2012 or 2010) for this relationship.
From some posts in 20111 ...
2
votes
2answers
154 views
Entity Framework TPC Inheritance (Please shoot me now)
I'm trying to build out an entity model and database closely based on the entities defined on http://www.schema.org using Code First and Migrations. The bottom line is all entities are inherited from ...
3
votes
2answers
228 views
Error while installing Mvc Scaffolding package using Package Manager Consoler in VS2012
I am new for using Package Manager Console. I need to install Autofac.Mvc3 and MvcScaffolding packages. I tried to install using Package Manager Console by running the below commands.
PM> ...
0
votes
0answers
59 views
how can i use mvcscaffold to other project
i'm newbie with mvcscaffold, and it's my first time to ask a question in here..
Background
I install the MvcScaffolding to.. and also see this
I install the mvcscaffolding in my web ...
0
votes
2answers
321 views
asp.net mvc 4 scaffolding not working
I have the following class in a class library
public class ExpenseDTO
{
[Key]
public Int32 ExpenseId { get; set; }
public Int32 ExpenseTypeId { get; set; }
[Display(ResourceType = ...
0
votes
0answers
127 views
MVCScaffolding Add-ProjectItemViaTemplate
I'm trying to create a javascript file with mvcscaffolding like this
ControllerWithAjaxGrid.ps1
[T4Scaffolding.Scaffolder(Description = "Generates an Ajax-powered grid")][CmdletBinding()]
param( ...
0
votes
1answer
144 views
How to use a .ps1 t4scaffolding template to Add Projects to the current solution?
Environment: Visual studio 2012, MvcScaffolding
I'm new to MvcScaffolding and Powershell but what I'm trying to accomplish is to add a new Project to the solution of the current project. So basically ...
0
votes
0answers
148 views
MvcScaffolding How to change the output directories for custom views
I tried to find this with a search first, but did not find anything, maybe I did not give the proper search terms, if this is a duplicate I applogize.
I am using MvcScaffolding 1.0.9 in an Mvc4 ...
2
votes
1answer
746 views
Customize T4 Scaffolding With PowerShell
I want to create a Custom Scaffolder that uses arbitrary PowerShell logic. It can render T4 templates (multiple ones if I want), with the result being output:
As a new file in your project
as a new ...
1
vote
0answers
184 views
Backbone, Ember or Knockout scaffolder for webapi and ASPNET MVC 4 with jquery grids
Is there a scaffolder that works with Backbone, Ember or Knockout or any other framework to scaffold webapi/aspnet mvc 4 project that uses Entity Framework 5 and is able to scaffold the view with ...
0
votes
0answers
141 views
Scaffolding aspnet webapi with jquery grid and unit testing
I've an ASPNET MVC4 project using WebApi, EF5 Code First and Repository and Unit of Work patterns.
I'd like to know if someone knows a scaffolder to scaffold the controllers and views, but instead of ...
1
vote
1answer
117 views
CamelCase a word in Powershell / Templates
I've looked everywhere and I can't seem to find an answer, maybe because I don't know enough to know what to search for.
I've used the Get-PluralizedWord function.
Is there a similar way to convert ...
0
votes
1answer
2k views
Nuget on Visual Studio 2012
I use Visual Studio 2012 Ultimate and I'm trying to install mvcScaffolding but I'm getting errors. I've tried to set the ExecutiongPolicy to Bypass, but I'm still getting errors. Any ideas how to fix ...
2
votes
1answer
255 views
MvcScaffolding for a Services/Repository pattern?
Does anybody know of any examples of an MvcScaffolding T4 template for building Services/Repository pattern?
I know that MvcScaffolding comes with a Repository scaffold built in, but I'd like to have ...
1
vote
0answers
56 views
revert Scaffold command
Scaffolding is a powerful feature and we can generate models, controllers
and views very fast from the package manager under visual studio.
But if you submit the wrong command,
How to revert it ?
For ...
2
votes
1answer
848 views
Error:'Unsupported context type' while creating a new controler
I am going to implement MvcMusicStore using ASP.NET MVC3, Linq to Sql class instead of Entity Framework, MS SQL Server 2008 pro instead of express ed.
I got the tutorial from ...
0
votes
1answer
420 views
Scaffolding error with CodeIgniter_2.1.2
I am using codeigniter 2.1.2 and I want to use scaffolding feature to add information to table. When I set this $route['scaffolding_trigger'] = 'scaffolding'; in routes.php and call it in controller ...
1
vote
1answer
118 views
asp.net dynamic data scaffold using a NoSQL DB
Is there any way to use ASP.NET Dynamic Data WebApp or Scaffold using a NoSQL DB (CouchDB)
I have a Class library of Objects - marked as a ContextModel.
I think i have to generate an EDMX file from ...
3
votes
2answers
583 views
MVC 3 Creates a new database instead of using the one specified
I'm creating a new MVC 3 pilot application using Mvc3 and the MvcScaffolding NuGet, everything runs smoothly until i want to use the database i already have. The application keeps creating a database ...
0
votes
2answers
1k views
MVCScaffolding for MVC4?
In the past, I had some success in automation of coding with customization functionality of MVCScaffolding for my MVC sites. Now, with great knockout.js and other js libraries, I want to automate ...
2
votes
2answers
232 views
Determine if the model's property is not nullable or is required (in MVCScaffolding T4 Template File)
I want write a method to get Nullable State of a property in T4 Template file.
I've written it in my TT files but in the T4 files it is different
bool IsRequired(object property) {
bool ...
0
votes
1answer
206 views
cannot find sql table from entity framework scaffolding
I just created an asp.net mvc 3 application and added these classes and then added the controller to supply the CRUD pages. When going to those pages i can do everything that's expected but for some ...




