EF 中获取 TableAttribute的值,即数据库中真实的表名

Posted Avatarx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF 中获取 TableAttribute的值,即数据库中真实的表名相关的知识,希望对你有一定的参考价值。

 

比如EF中我定义了这样一个实体:

 

[csharp] view plain copy
 
print?
  1. [Table(Name = "MyTableName")]  
  2. public class MyClass  
  3. {  
  4. }  
    [Table(Name = "MyTableName")]
    public class MyClass
    {
    }

 

现我想获取 MyTableName,可以这样来办:


 

[csharp] view plain copy
 
print?
  1. using System.Data.Linq.Mapping;  
  2.   
  3. namespace MyEF  
  4. {  
  5.     class Program  
  6.     {  
  7.         static void Main(string[] args)  
  8.         {  
  9.             string name = typeof(MyClass).GetAttributeValue((TableAttribute ta) => ta.Name);  
  10.             Console.WriteLine(name);  
  11.   
  12.             Console.Read();  
  13.         }  
  14.     }  
  15.   
  16.     public static class AttributeExtensions  
  17.     {  
  18.         public static TValue GetAttributeValue<TAttribute, TValue>(  
  19.             this Type type,  
  20.             Func<TAttribute, TValue> valueSelector)  
  21.             where TAttribute : Attribute  
  22.         {  
  23.             var att = type.GetCustomAttributes(  
  24.                 typeof(TAttribute), true  
  25.             ).FirstOrDefault() as TAttribute;  
  26.             if (att != null)  
  27.             {  
  28.                 return valueSelector(att);  
  29.             }  
  30.             return default(TValue);  
  31.         }  
  32.     }  
  33.   
  34.     [Table(Name = "MyTableName")]  
  35.     public class MyClass  
  36.     {  
  37.     }  
  38. }  

以上是关于EF 中获取 TableAttribute的值,即数据库中真实的表名的主要内容,如果未能解决你的问题,请参考以下文章

命名空间“Microsoft.Azure.WebJobs”中不存在类型或命名空间名称“TableAttribute”

Entity Framwork(EF) 7——在Controller内获取指定字段的值

EF Core 执行sql语句

如何获取从 Knex 返回的值(数组中的对象,即数组中的对象)

使用 EF 和 Linq 通过另一个表字段值的值在表中查找字段

EF DateTimes 与 SQL Server 中保存的值不匹配 [重复]