我正在开发一个asp.net MVC应用程序。我在global.asax文件中有以下代码用于动态数据实现
代码段1:
model.RegisterContext(typeof(MyCustomEntities), new ContextConfiguration() { ScaffoldAllTables = false });
代码段2:
routes.Add(new DynamicDataRoute("{table}/{action}.aspx")
{
Constraints = new RouteValueDictionary(
new { action = "List|Details|Edit|Insert" }),
Model = model
});
代码段3:
//routes.Add("MyTable1", new DynamicDataRoute("MyTable1/{action}.aspx")
//{
// Constraints = new RouteValueDictionary(new { action = "List|Details|Edit|Insert" }),
// Model = model,
// Table = "MyTable1"
//});
代码段4:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
routes.MapRoute(
"Default",
// Route name
"{controller}/{action}/{id}",
// URL with parameters
new { controller = "Home", action = "Index", id = "" }
// Parameter defaults
);
问题是尽管有scaffoldingAlltables = false,我得到Default.aspx页面中所有表的列表。
我已经有50个表,但我只想要3或4个表的动态数据。如果我评论代码片段4,问题就会得到解决,但我不能这样做。有解决方法吗?
我还尝试评论代码片段2并为我要列出的所有表添加代码段3。它仍显示所有50个表格。
此致
HARI