- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下用 EF 生成的类“schakeling”,表示数据库表“schakeling”。在数据库中,'id' 是主键,'plc_id' 是外键。
public partial class schakeling
{
public schakeling()
{
this.verbruik = new HashSet<verbruik>();
}
public int id { get; set; }
public int plc_id { get; set; }
public string var_output { get; set; }
public string omschrijving { get; set; }
public int vermogen { get; set; }
public Nullable<bool> status { get; set; }
public Nullable<byte> hourOn { get; set; }
public Nullable<byte> minuteOn { get; set; }
public Nullable<byte> hourOff { get; set; }
public Nullable<byte> minuteOff { get; set; }
public virtual plc plc { get; set; }
public virtual ICollection<verbruik> verbruik { get; set; }
}
我有一个 View 类
public class SchakelingsListViewModel
{
public IEnumerable<schakeling> List { get; set; }
public PagingInfo PagingInfo { get; set; }//Not relevant for this question
//And some more properties...also not relevant
}
我有以下 View (为简洁起见省略了一些 HTML)
@model PortalControl.ViewModels.SchakelingsListViewModel
<h2>Index</h2>
<table>
@foreach (var item in Model.List) {
@Html.TableRowFor(item)
}
</table>
我有一个通用的 html 辅助方法 TableRowFor,因为我希望能够在使用 EF 生成的其他域实体上使用该方法。该方法生成简单的表格数据。
public static MvcHtmlString TableRowFor<T>(this HtmlHelper helper, T obj)
{
string controller = obj.GetType().BaseType.Name;
string id = obj.GetType().GetProperty("id").GetValue(obj).ToString();
StringBuilder sb = new StringBuilder("<tr>");
sb.Append("<td>");
sb.Append("<a href='" + controller + "/Edit/" + id + "'><img src='/Images/edit-icon.png' /></a>");
sb.Append("<a href='" + controller + "/Details/" + id + "'><img src='/Images/details-icon.png' /></a>");
sb.Append("<a href='" + controller + "/Delete/" + id + "'><img src='/Images/delete-icon.png' /></a>");
sb.Append("</td>");
foreach (var property in obj.GetType().GetProperties())
{
//If statement below filters out the two virtual properties(plc, verbruik) of the schakeling class(as said, generated with EF), somewhat ugly but it works, better suggestions are welcome..
if ((!property.PropertyType.Name.ToLower().Contains("icollection")) && (property.PropertyType.CustomAttributes.Count() != 0))
{
sb.Append("<td>");
//if property is foreign key
//sb.Append("<a href='" + correctControllerNameHere + "/Details/" + property.GetValue(obj) + "'><img src='/Images/details-icon.png' /></a>");
//else
//sb.Append(property.GetValue(obj));
sb.Append("</td>");
}
}
sb.Append("</tr>");
return new MvcHtmlString(sb.ToString());
}
我的问题是,如果属性是外键,我想创建一个链接。
我在互联网上搜索过,但我不是 PropertyInfo、MetaDataClassType 和其他类似类方面的专家。像 property.isForeign() 这样的东西会很可爱,但任何有用的东西都会受到赞赏。
最佳答案
您可以通过以下方法从 Entity Framework 概念模型中获取引用导航属性:
IEnumerable<string> GetReferenceProperies<T>(DbContext context)
{
var oc = ((IObjectContextAdapter)context).ObjectContext;
var entityType = oc.MetadataWorkspace.GetItems(DataSpace.OSpace)
.OfType<EntityType>()
.FirstOrDefault (et => et.Name == typeof(T).Name);
if (entityType != null)
{
foreach (NavigationProperty np in entityType.NavigationProperties
.Where(p => p.ToEndMember.RelationshipMultiplicity
== RelationshipMultiplicity.One
|| p.ToEndMember.RelationshipMultiplicity
== RelationshipMultiplicity.ZeroOrOne))
{
yield return np.Name;
}
}
}
它获取关联末尾具有 0..1
的所有导航属性,因此不包括集合导航属性。
现在您可以使用属性名称来获取匹配的 PropertyInfo
并获取属性的值。
关于c# - 如何确定 PropertyType 是否为外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22859430/
我有这样的类型定义: type Blah = { fields: { value: string }[] } 我们在这里看到字段是一堆数组条目。我想通过 $PropertyT
我有这样的类型定义: type Blah = { fields: { value: string }[] } 我们在这里看到字段是一堆数组条目。我想通过 $PropertyT
我怎样才能让它工作? switch(property.PropertyType){ case typeof(Boolean): //doStuff break;
这个问题在这里已经有了答案: C#: Getting size of a value-type variable at runtime? (8 个答案) 关闭 9 年前。 我有一个函数可以确定记录值
我有以下用 EF 生成的类“schakeling”,表示数据库表“schakeling”。在数据库中,'id' 是主键,'plc_id' 是外键。 public partial class schak
我正在尝试通过反序列化 json 来创建属性的新实例字符串。调用JsonConvert.DeserializeObject(string)当我明确说明 T 的类型时有效: var foo = Json
我有一个通用函数,可以使用反射从 DataRow 创建对象。我正在使用此函数从 Access 数据库导入表: private static T CreateItemFromRow(DataRow ro
我想使用 PropertyType 返回的类型来创建类型化函数。我发现这个相似 using type returned by Type.GetType() in c#但这提到了如何创建一个列表,但没有
我有如下类: public class SampleClassToTest { public static Fake SomeMethod(string parameter) {
我的问题是:怎样才能使 PropertyInfo.GetValue(object, null); 转换为 PropertyType 的返回值,而不是返回对象。 我试过 Convert.ChangeTy
我正在使用这两个库: Unity-SerializableDictionary: https://github.com/starikcetin/Unity-SerializableDictionary
我想使用反射获取属性类型。这是我的代码 var properties = type.GetProperties(); foreach (var propertyInfo in properties)
我正在遍历对象并初始化该对象的所有属性。首先,对象的类型即类被放置在我的同一个项目中并且工作正常。现在,我将该类移到另一个项目中,但仍然使用 AssemblyName.Namespace.Class
我只需要显示名称在必填字段列表中的属性。 我正在尝试做这样的事情,但是 p.PropertyType.Name == x 不正确: Pricing pricing = new Pricing(); T
我只需要显示名称在必填字段列表中的属性。 我正在尝试做这样的事情,但是 p.PropertyType.Name == x 不正确: Pricing pricing = new Pricing(); T
我是一名优秀的程序员,十分优秀!