0
我使用Dapper和Dapper.Contrib來映射數據庫中的對象。從TableAttribute獲取表名Dapper.Contrib
我有一個類名,我爲這個類定義表名,因爲它與實際的類名不同。
類:
[Table("tblUser")]
public class User
{
public int Id { get; set; }
public string Title { get; set; }
}
我怎樣才能得到它被設置表數據註解屬性表名?
編輯:
我用下面得到它的工作
var tAttribute =
(TableAttribute)typeof(T).GetCustomAttributes(typeof(TableAttribute), true)[0];
tableName = tAttribute.Name;