Azure Mobile Service TableController不返回内部对象
本文关键字:返回 内部对象 TableController Mobile Service Azure | 更新日期: 2023-09-27 18:11:05
我正在创建一个基本的(我的第一个)Azure移动服务与表存储来控制一个简单的事件应用程序。我的DataObjects包括2个对象类型:Coordinator
和Event
,我希望coordinator是一个单独的表来存储特定的信息,我不希望它在事件中非规范化,但事件也有一个内部对象Location来存储事件位置的详细信息,但我希望存储非规范化,因为我不想从事件中单独维护这些详细信息。
public class Coordinator : EntityData {
public string Name { get; set; }
public int Points { get; set; }
public bool IsActive { get; set; }
}
public class Event: EntityData {
public Coordinator Coordinator { get; set; }
public DateTime EventDate { get; set; }
public int Attendees { get; set; }
public Location Location { get; set; }
}
public class Location {
public string Name { get; set; }
public string Address1 { get; set; }
public string Address2 { get; set; }
public string City { get; set; }
public string County { get; set; }
public string PostCode { get; set; }
}
控制器作为由VS的脚手架生成的基本TableController
,我所做的唯一更改是在事件控制器上暴露MobileServiceContext
,以使Post方法能够在保存时找到现有的协调器,因为客户端只会发布协调器的ID:
public class EventController : TableController<Event> {
private MobileServiceContext context;
protected override void Initialize(HttpControllerContext controllerContext) {
base.Initialize(controllerContext);
context = new MobileServiceContext();
DomainManager = new EntityDomainManager<Event>(context, Request, Services);
}
protected override void Dispose(bool disposing) {
context?.Dispose();
base.Dispose(disposing);
}
public IQueryable<Event> GetAllEvent() {
return Query();
}
public async Task<IHttpActionResult> PostEvent(Event item) {
var coordinator = context.Coordinators.Find(item.Coordinator.Id);
item.Coordinator = coordinator;
Event current = await InsertAsync(item);
return CreatedAtRoute("Tables", new { id = current.Id }, current);
}
}
从客户端发布数据按预期工作,我有一个包含正确数据的Coordinator表:
ID Name Points IsActive Version CreatedAt UpdatedAt Deleted
cdf96b0f93644f1e945bd16d63aa96e0 John Smith 10 True 0x00000000000007D2 04/09/2015 09:15:02 +00:00 04/09/2015 09:15:02 +00:00 False
f216406eb9ad4cdcb7b8866fdf126727 Rebecca Jones 10 True 0x00000000000007D4 04/09/2015 09:15:30 +00:00 04/09/2015 09:15:30 +00:00 False
和与第一个协调器关联的事件:
Id EventDate Attendees Location_Name Location_Address1 Location_Address2 Location_City Location_County Location_PostCode Version CreatedAt UpdatedAt Deleted Coordinator_Id
961abbf839bf4e3481ff43a214372b7f 04/11/2015 09:00:00 0 O2 Arena Peninsula Square London SE10 0DX 0x00000000000007D6 04/09/2015 09:18:11 +00:00 04/09/2015 09:18:11 +00:00 False cdf96b0f93644f1e945bd16d63aa96e0
在这一点上一切看起来都很好,我的2个问题是与事件的Get,其中Coordinator
和Location
对象都没有返回,我的EventController的Get的Json只是这样:
[{"id":"961abbf839bf4e3481ff43a214372b7f","attendees":0,"eventDate":"2015-11-04T09:00:00Z"}]
所以我的两个问题是:
1)位置对象由服务器上的EventController
正确加载,如果我在返回之前中断,我可以看到正确加载的属性,对我来说看起来像Json序列化问题,但我已经尝试改变序列化器的配置(在WebApiConfig
上)没有太大影响,我尝试的最后一个选项是MaxDepth
,但仍然没有返回位置对象。
2)我根本没有在服务器上加载Coordinator对象,甚至没有Id(它正确地存储在表中),所以我不能强制加载整个对象,当然它也不会返回给客户端。
关于我在这里做错了什么有什么想法吗?
Thanks in advance
Claiton洛瓦托
这是TableController的默认行为。为了以时尚的方式实现你想要的,你应该在控制器中实现OData $expand。
本文为解决方案
提供了一个很好的演练。使用。net后端Azure Mobile Services从1:n关系中检索数据
作为进一步的扩展,我实现了一个自定义属性,您可以在控制器方法中使用它来指定客户端可以请求展开哪些属性。您可能不希望总是返回所有子关系(展开的对象)
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class ExpandablePropertyAttribute : ActionFilterAttribute
{
#region [ Constants ]
private const string ODATA_EXPAND = "$expand=";
#endregion
#region [ Fields ]
private string _propertyName;
private bool _alwaysExpand;
#endregion
#region [ Ctor ]
public ExpandablePropertyAttribute(string propertyName, bool alwaysExpand = false)
{
this._propertyName = propertyName;
this._alwaysExpand = alwaysExpand;
}
#endregion
#region [ Public Methods - OnActionExecuting ]
public override void OnActionExecuting(HttpActionContext actionContext)
{
base.OnActionExecuting(actionContext);
var uriBuilder = new UriBuilder(actionContext.Request.RequestUri);
var queryParams = uriBuilder.Query.TrimStart('?').Split(new char[1] { '&' }, StringSplitOptions.RemoveEmptyEntries).ToList();
int expandIndex = -1;
for (var i = 0; i < queryParams.Count; i++)
{
if (queryParams[i].StartsWith(ODATA_EXPAND, StringComparison.Ordinal))
{
expandIndex = i;
break;
}
}
if (expandIndex >= 0 || this._alwaysExpand)
{
if (expandIndex < 0)
{
queryParams.Add(string.Concat(ODATA_EXPAND, this._propertyName));
}
else
{
queryParams[expandIndex] = queryParams[expandIndex] + "," + this._propertyName;
}
uriBuilder.Query = string.Join("&", queryParams);
actionContext.Request.RequestUri = uriBuilder.Uri;
}
}
#endregion
}
我在控制器中这样使用它:
[ExpandableProperty("Documents", false)]
public IQueryable<ClientActivity> GetAllClientActivities()
{
return Query();
}
我已经设法使复杂的属性被序列化并发送回客户端。也许解决方案不是最干净的,但它在我的情况下有效。希望其他人也会觉得有用。
首先,创建一个继承EnableQueryAttribute
并重写GetModel
方法的类,像这样:
public class CustomEnableQueryAttribute : EnableQueryAttribute
{
public override IEdmModel GetModel(Type elementClrType, HttpRequestMessage request, HttpActionDescriptor actionDescriptor)
{
var modelBuilder = new ODataConventionModelBuilder();
modelBuilder.EntitySet<Event>("Events");
return modelBuilder.GetEdmModel();
}
}
然后,在控制器的Initialize
方法中,添加以下行:
protected override void Initialize(HttpControllerContext controllerContext)
{
base.Initialize(controllerContext);
context = new MobileServiceContext();
DomainManager = new EntityDomainManager<Event>(context, Request, Services);
//Add these lines
var service = Configuration.Services.GetServices(typeof(IFilterProvider)).ToList();
service.Remove(service.FirstOrDefault(f => f.GetType() == typeof(TableFilterProvider)));
service.Add(new TableFilterProvider(new CustomEnableQueryAttribute()));
Configuration.Services.ReplaceRange(typeof(IFilterProvider), service.ToList().AsEnumerable());
Request.Properties.Add("MS_IsQueryableAction", true);
}