使用 ajaxgrid 或 jqgrid 的 ASPNET MVC 3 脚手架
我有一个使用 Entity Framework 4 制作的 ASPNET MVC 3 项目(首先是数据库)。我正在尝试使用脚手架通过 jqgrid 创建 CRUD,如下所示: MVC 自定义脚手架
但是当我运行 Scaffold ControllerWithAjaxGrid StockItem 之类的东西时,它会说:
Invoke-Scaffolder:找不到位置参数 接受参数“StockItem”。行:1 字符:9 + 脚手架<<<<< ControllerWithAjaxGrid 库存项目 + 类别信息:无效参数:(:) [调用脚手架],ParameterBindingException +完全限定错误ID: PositionalParameterNotFound,T4Scaffolding.Cmdlets.InvokeScaffolderCmdlet
有什么想法吗?
我也尝试使用 nuget 包中的 MVCScaffolding (Ajax Grid Scaffolder),但它不显示添加、编辑或删除按钮)。对此有什么想法吗?如果可能的话,我更喜欢使用第一个。
提前致谢!吉列尔莫.
I have an ASPNET MVC 3 project made with Entity Framework 4 (database first). I'm trying to use scaffolding to create CRUDs with jqgrid following: MVC Custom Scaffolding
But when I run something like Scaffold ControllerWithAjaxGrid StockItem it says:
Invoke-Scaffolder : A positional parameter cannot be found that
accepts argument 'StockItem'. At line:1 char:9
+ Scaffold <<<< ControllerWithAjaxGrid StockItem
+ CategoryInfo : InvalidArgument: (:)
[Invoke-Scaffolder], ParameterBindingException
+ FullyQualifiedErrorId :
PositionalParameterNotFound,T4Scaffolding.Cmdlets.InvokeScaffolderCmdlet
Any ideas?
I'm tried to use the MVCScaffolding from nuget packages as well (Ajax Grid Scaffolder) but it doesn't show add nor edit or delete buttons). Any ideas on that one? I prefer to use the first one if possible.
Thanks in advance! Guillermo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我需要复制 T4 模板,这当然可以使其工作。
I needed to copy the T4 templates, that, of course, made it work.