Image

  • 1 Post
  • 6 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle
  • zeroadamOPto.NETAutoMapper - mapping nullable properties
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    So… When I change…

    .ForMember(ee => ee.ExampleId, options => options.MapFrom(ed => ed.ExampleProperty != null ? ed.ExampleProperty.ExampleId : (long?)null))

    TO:

    .ForMember(ee => ee.ExampleId, options => options.MapFrom(ed => ed.ExampleProperty?.ExampleId))

    I am presented with: CS8072 - An expression tree lambda may not contain a null propagating operator.



  • At first “glance”, if you’re looking to get into DevOps, then a deployment engineer should be a good match. I suppose it depends on the company and what they really want vs the job req description. As a Release Engineer, you would need to have (or get on the job) skills with CI/CD pipelines (build/release), branch management and release merging/tagging, and so on. Again, it depends what the company is really doing or wanting from that role.