如何避免在实体上调用 GetProperties 时返回某些属性和外部实体
本文关键字:实体 属性 返回 外部 GetProperties 何避免 调用 | 更新日期: 2023-09-27 18:34:45
我正在打电话:
var properties = person.GetType().GetProperties(BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
这将返回我想要的内容,它还返回一个我不想要的属性,称为 Update,但我可以很容易地忽略它。 它还返回我不想包含的CarReference
和Car
。 如何排除这些字段? 目前,我有一个排除属性的列表,如果名称与其中一个匹配,我只是跳过它,但我希望它更通用,而不是硬编码"CarReference"
和"Car"
例如
我不知道这是否是您要找的,但这里有一个可以帮助您的片段。自动生成的实体框架"实体"类的某些属性存在一些条件:
var flags = BindingFlags.Public | BindingFlags.Instance;
var destinationProperties = typeof(TDestination).GetProperties(flags);
foreach (var property in destinationProperties)
{
var type = property.PropertyType;
// Ignore reference property (e.g. TripReference)
if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(EntityReference<>))
{
// ...
}
// Ignore navigation property (e.g. Trips)
if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(EntityCollection<>))
{
// ...
}
// Ignore ID (edmscalar) property (e.g. TripID)
if (property.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false).Any())
{
// ..
}
使用属性类型中列出的"命名空间"属性,外部实体将被以下语句跳过:if (type.命名空间 != "系统"(
using (var db = new Entities.YourEntities())
{
var originalObj = db.MyTable.FirstOrDefault();
foreach (var prop in originalObj.GetType().GetProperties())
{
var type = prop.PropertyType;
if (type.Namespace != "System")
continue;
var name = prop.Name;
var value = prop.GetValue(originalObj, null);
//your code here
}
}