コード例 #1
0
        public async Task <IActionResult> GetById(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            LeadDTO lead = await _context.Lead
                           .Include(l => l.status)
                           .Include(l => l.priority)
                           .Include(l => l.customer)
                           .Include(l => l.customer.details)      // Details not being transferred with the DTO
                           .Include(l => l.employee)
                           .Select(l =>
                                   new LeadDTO()
            {
                Id          = l.lead_id,
                LastContact = l.last_contact,
                Status      = l.status,
                Priority    = l.priority,
                Customer    = new CustomerDTO()
                {
                    Id      = l.customer.customer_id,
                    Name    = l.customer.name,
                    Email   = l.customer.email,
                    Phone   = l.customer.phone,
                    Age     = l.customer.age,
                    Details = l.customer.details
                },
                Employee = new EmployeeDTO()
                {
                    Id    = l.employee.employee_id,
                    Name  = l.employee.name,
                    Email = l.employee.email,
                    Phone = l.employee.phone
                }
            }
                                   )
                           .SingleOrDefaultAsync(l => l.Id == id);

            if (lead == null)
            {
                return(NotFound());
            }

            return(Ok(lead));
        }
コード例 #2
0
        public async Task <IActionResult> Post([FromBody] Lead lead)
        {
            if (lead == null)
            {
                return(BadRequest());
            }

            _context.Lead.Add(lead);
            await _context.SaveChangesAsync();

            _context.Entry(lead).Reference(l => l.status).Load();
            _context.Entry(lead).Reference(l => l.priority).Load();
            _context.Entry(lead).Reference(l => l.customer).Load();
            // _context.Entry(lead).Reference(l => l.customer.details).Load(); <- figure this out, not working throws a 500
            _context.Entry(lead).Reference(l => l.employee).Load();

            LeadDTO leadDto = new LeadDTO()
            {
                Id          = lead.lead_id,
                LastContact = lead.last_contact,
                Status      = lead.status,
                Priority    = lead.priority,
                Customer    = new CustomerDTO()
                {
                    Id      = lead.customer.customer_id,
                    Name    = lead.customer.name,
                    Email   = lead.customer.email,
                    Phone   = lead.customer.phone,
                    Age     = lead.customer.age,
                    Details = lead.customer.details
                },
                Employee = new EmployeeDTO()
                {
                    Id    = lead.employee.employee_id,
                    Name  = lead.employee.name,
                    Email = lead.employee.email,
                    Phone = lead.employee.phone
                }
            };

            return(CreatedAtRoute("GetLead", new { id = lead.lead_id }, leadDto));
        }