为什么我的DTO空无一人?

时间:2017-10-26 02:51:34

标签: c# asp.net linq nullreferenceexception dto

我正在进行的项目中有一些DTO。我正在使用AutoMapper来创建映射。除了其中一个映射外,所有映射都有效。我可以说,因为在使用LINQ方法语法检索数据时,我得到Null引用。无论如何,这里是我认为相关的所有代码:

MappingProfile.cs

using AutoMapper;
using GigHub.Controllers.Api;
using GigHub.Dtos;
using GigHub.Models;

namespace GigHub.App_Start
{
    public class MappingProfile : Profile
    {
        public MappingProfile()
        {
            Mapper.CreateMap<ApplicationUser, UserDto>();
            Mapper.CreateMap<Gig, GigDto>();
            Mapper.CreateMap<Notification, NotificationDto>();
            Mapper.CreateMap<Following, FollowingDto>();
        }
    }
}

的Global.asax.cs

using AutoMapper;
using GigHub.App_Start;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace GigHub
{
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            Mapper.Initialize(c => c.AddProfile<MappingProfile>());
            GlobalConfiguration.Configure(WebApiConfig.Register);
            AreaRegistration.RegisterAllAreas();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
        }
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("elmah.axd");

        }

    }
}

Following.cs

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace GigHub.Models
{
    // Alternatively, this class could be called Relationship.
    public class Following
    {
        [Key]
        [Column(Order = 1)]
        public string FollowerId { get; set; }

        [Key]
        [Column(Order = 2)]
        public string FolloweeId { get; set; }

        public ApplicationUser Follower { get; set; }
        public ApplicationUser Followee { get; set; }
    }
}

FollowingDto.cs

namespace GigHub.Dtos
{
    public class FollowingDto
    {
        public string FolloweeId { get; set; }    
    }
}

FollowingsController.cs

using System.Linq;
using System.Web.Http;
using GigHub.Dtos;
using GigHub.Models;
using Microsoft.AspNet.Identity;

namespace GigHub.Controllers.Api
{
    [Authorize]
    public class FollowingsController : ApiController
    {
        private ApplicationDbContext _context;

        public FollowingsController()
        {
            _context = new ApplicationDbContext();    
        }
            //CheckFollow is what I am using to test the Dto
        [HttpGet]
        public bool CheckFollow(FollowingDto dto)
        {
            var userId = User.Identity.GetUserId();
            if (_context.Followings.Any(f => f.FolloweeId == userId && f.FolloweeId == dto.FolloweeId))
                return true;
            else
                return false;

        }

        [HttpPost]
        public IHttpActionResult Follow(FollowingDto dto)
        {
            var userId = User.Identity.GetUserId();

            if (_context.Followings.Any(f => f.FolloweeId == userId && f.FolloweeId == dto.FolloweeId))
                return BadRequest("Following already exists.");

            var following = new Following
            {
                FollowerId = userId,
                FolloweeId = dto.FolloweeId
            };
            _context.Followings.Add(following);
            _context.SaveChanges();

            return Ok();
        }
    }
}

WebApiConfig.cs

using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using System.Web.Http;

namespace GigHub
{
    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            var settings = GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings;
            settings.ContractResolver = new CamelCasePropertyNamesContractResolver();
            settings.Formatting = Formatting.Indented;

            config.MapHttpAttributeRoutes();

            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{action}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );
        }
    }
}

我怀疑这个工具很重要,但我一直在使用Postman来测试我的API。我在这个Dto中看到的唯一区别是,Automapper将为其创建映射的列在模型中具有Key和Column Order属性。我不明白为什么那会很重要。我已经在网上搜索过这个问题,解决方案没有帮助,因为我已经在做了。任何人都可以从我发布的代码中说出为什么我可以获得Null引用?从技术上讲,Postman中的错误说System.Exception.TargetException,但据我所知,这意味着你的LINQ查询不会返回任何结果。

我知道我的查询有效,因为我已经在我的数据库中的字符串FolloweeId中传递了API CheckFollow操作。所以我只能假设我的Dto没有正确映射。

1 个答案:

答案 0 :(得分:0)

我解决了自己的问题。我显然已经证明了我在Web API上有多少新手。无论如何,我将我的CheckFollow状态视为POST动作,但事实并非如此。这是一个GET行动。 GET行动有什么作用? URL中的参数。所以我只是简单地修改了我的动作参数:

public bool CheckFollow([FromUri] FollowingDto dto)

这允许操作从URL中提取参数并传递给包含一个string类型属性的Dto。 Dto不再为null,我的行为也起作用。