我正在开发WebApi项目,我的域名中有2个实体:
街
public class Street
{
public int ID { get; set; }
public string Name { get; set; }
public int StreetTypeID { get; set; }
public virtual StreetType StreetType { get; set; }
}
和街道类型:
public class StreetType
{
public int ID { get; set; }
public string Name { get; set; }
public virtual ICollection
我使用FluenApi来映射这些实体:
public class StreetTypeMap : EntityTypeConfigurationrequired().HasMaxLength(50);
HasMany(a => a.Streets).Withrequired(p => p.StreetType).HasForeignKey(p => p.StreetTypeID);
ToTable("StreetType");
}
}
和街道实体类似.
现在我得到JSON:
{
"id":1,"name":"Street1","streettypeid":3
}
我怎样才能获得JSON:
{
"id":1,"streettypeid":
{
"id":3,"name":"Type3"
}
}
或者一些类似的结构.我怎样才能在.NET中实现这一目标?
我的控制器:
StreetController : BaseApiController
和
public class BaseApiController
}
最佳答案
要保留JSON中的对象引用,请将以下代码添加到Global.asax文件中的Application_Start方法:
原文链接:https://www.f2er.com/csharp/437147.htmlvar json = GlobalConfiguration.Configuration.Formatters.JsonFormatter;
json.SerializerSettings.PreserveReferencesHandling =
Newtonsoft.Json.PreserveReferencesHandling.All;
另一种方法是尝试在您的webapi中使用OData.
您必须安装OData包:
Install-Package Microsoft.AspNet.Odata
然后你就可以使用$expand来导致相关实体被包含在响应内联中.
您可以按原样保留所有内容,但我认为可以正确添加IgnoreDataMember(不要忘记使用System.Runtime.Serialization添加;)
public class StreetType
{
public int ID { get; set; }
public string Name { get; set; }
[IgnoreDataMember]
public virtual ICollection
[EnableQuery]
public virtual IQueryable
之后,您可以创建http请求,如:
http://blablabla/Street?$expand=StreetType
并使用他们的StreetType获取所有Streets