标签: c# asp.net-mvc class
我正在映射具有可填充填充字段的表字段
对于静态类,我可以将所有属性作为
ViewBag.viewFields = typeof(Table_Name).GetProperties() .Select(property => property.Name) .ToArray();
如果Table_Name是硬编码的,这是可以的,但是我需要来自数据库的动态表名。
Table_Name