3

使用 Entity Framework 5,数据库优先。

是否有可能(在运行时)获取实体属性所代表的数据库列的数据类型?如果这更容易,.net 类型也可以正常工作。

IEnumerable<DbEntityEntry> entities =
    context.ChangeTracker.Entries()
            .Where(
                e =>
                e.State == EntityState.Added || e.State == EntityState.Modified);

foreach (DbEntityEntry entity in entities)
{
   foreach (string propertyName in entity.CurrentValues.PropertyNames)
   {
     //so I know the entity and the property name.  Can I get the data type?
   }
}
4

2 回答 2

2

在实体上使用反射来获取属性信息。

foreach (DbEntityEntry entity in entities)
{
    foreach (string propertyName in entity.CurrentValues.PropertyNames)
    {
        var propertyInfo = entity.Entity.GetType().GetProperty(propertyName);
        var propertyType = propertyInfo.PropertyType;

    }
}
于 2013-09-19T18:01:19.573 回答
2

获取表中特定列的数据类型:

[假设:实体道具类名称:供应商和列名称="VendorID"]

string columnTypName =   (context.Vendors.EntitySet.ElementType.Members["VendorID"].TypeUsage.EdmType).Name;

要动态获取所有列的名称和类型

[参数:表名]

var columns = from meta in ctx.MetadataWorkspace.GetItems(DataSpace.CSpace)
                                       .Where(m => m.BuiltInTypeKind == BuiltInTypeKind.EntityType)
                       from p in (meta as EntityType).Properties
                       .Where(p => p.DeclaringType.Name == tableName)
                       select new
                       {
                           colName = p.Name,
                           colType = p.TypeUsage.EdmType.Name
                       };
于 2014-03-20T23:56:12.867 回答