EF избегать привязки навигационных свойств к DTO - PullRequest
0 голосов
/ 26 октября 2018

В моей модели данных EF у меня есть сущность Location и сущность LocationType.Расположение имеет свойство FkLocationTypeID.Теперь, если я возвращаю объект Location из моей конечной точки API, он возвращает большой объект, к которому прикреплены все свойства навигации.Поэтому я создал LocationDto, чтобы возвращать только те свойства, которые я хочу.Мой DTO выглядит примерно так:

 public class LocationDto
{
    public int LocationId { get; set; }
    public LocationDto ParentLocation { get; set; }
    public LocationType LocationType { get; set; }
    public string LocationName { get; set; }
    public string LocationCode { get; set; }
    // other properties here
}

Теперь проблема в том, что у меня есть свойство LocationType в моем DTO, которое является объектом EF.В тот момент, когда я его добавляю, мой JSON снова становится очень длинным из-за всех ассоциаций с LocationType.

Есть ли способ избежать этого и получить только объект LocationType?

так выглядит мой json после включения LocationType.

    {
  "locationId": 0,
  "locationType": {
    "locationTypeId": 0,
    "locationTypeName": "string",
    "locationTypeDisplayName": "string",
    "localizedKey": "string",
    "locations": [
      {
        "locationId": 0,
        "fkParentLocationId": 0,
        "fkLocationTypeId": 0,
        "fkTimeZoneId": 0,
        "locationName": "string",
        "locationDisplayName": "string",
        "locationCode": "string",
        "address1": "string",
        "address2": "string",
        "city": "string",
        "state": "string",
        "country": "string",
        "zipCode": "string",
        "phoneNumber": "string",
        "faxNumber": "string",
        "phoneExtention": "string",
        "email": "string",
        "longitude": 0,
        "latitude": 0,
        "useAppointments": true,
        "availabilityWindowDays": 0,
        "appointmentCutOffDays": 0,
        "dailySummaryEmailTime": "string",
        "durationBeforeFirstApptHours": 0,
        "reminderBeforeApptSmsHours": 0,
        "reminderBeforeApptEmailHours": 0,
        "createdBy": 0,
        "createdDate": "2018-10-26T06:51:00.288Z",
        "changedBy": 0,
        "changedDate": "2018-10-26T06:51:00.288Z",
        "activeStatus": 0,
        "enableStaffSelection": true,
        "showInWidget": true,
        "autoAssign_FloatPriorityMode": 0,
        "googleReserveEnabled": true,
        "messageLogs": [
          {
            "messageLogId": 0,
            "fkMessageFormatTypeId": 0,
            "fkMessageTypeId": 0,
            "fkLocationId": 0,
            "fkUserId": 0,
            "fkAppointmentId": 0,
            "sentTime": "2018-10-26T06:51:00.288Z",
            "messageUid": "string",
            "messageFormatType": {
              "messageFormatTypeId": 0,
              "messageFormatTypeName": "string",
              "messageTemplates": [
                {
                  "messageTemplateId": 0,
                  "fkMessageFormatTypeId": 0,
            .....................................
          }
       }

1 Ответ

0 голосов
/ 26 октября 2018
  • не смешивайте модели EF и DTO!
  • создать полный набор DTO в отдельном пространстве имен (проект, сборка)
  • используйте картограф (то есть Automap или аналогичный) для сопоставления между моделями EF и DTO
...