本文介绍了如何通过在MVC中传递表名来获取列名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我想通过使用实体框架在mvc中传递表名来显示列名。

并使用下面的查询获取单个表的列名(管理员)。

如何在实体框架中动态传递tablename。

请给我解决方案。



我尝试过:



Hi all,
I want to display column names by passing table name in mvc using entity framework.
and by using below query getting column names for single table(Administrator) only.
How to pass tablename dynamically in entity framework.
please give me solution regarding this.

What I have tried:

public List<string> GetColumnNames(string tablename)
        {
            using (var Context = new MCPEntities())
            {
                var names = typeof(Administrator).GetProperties().Select(property => property.Name).ToArray();
                return names.ToList();              
            }

推荐答案



这篇关于如何通过在MVC中传递表名来获取列名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 10:51