示例#1
0
        public IHttpActionResult Patch([FromODataUri] string key, Delta <DeptAndWardEntity> patch)
        {
            DepartmentAndWardService service = new DepartmentAndWardService();
            object id;

            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }
            else if (patch.GetChangedPropertyNames().Contains("ID") && patch.TryGetPropertyValue("ID", out id) && (string)id != key)
            {
                return(BadRequest("The key from the url must match the key of the entity in the body"));
            }

            try
            {
                var query = service.GetEntity(key.ToString());
                patch.Patch(query);
                service.UpdateEntity(query);
                return(Updated(query));
            }
            catch (Exception)
            {
                return(NotFound());
            }
        }
示例#2
0
        public IHttpActionResult RecordQuery(string key)
        {
            DepartmentAndWardService service = new DepartmentAndWardService();

            try
            {
                var query = service.GetEntity(key.ToString());
                return(Ok(query.PackageResult()));
            }
            catch (Exception)
            {
                PackageResultEntity <object> packageResultEntity = new PackageResultEntity <object>()
                {
                    list = null,
                    msg  = "failed"
                };
                return(Json(packageResultEntity));
            }
        }