Я создал 2 таблицы и 2 класса моделей, один для Lookups
и другой для Lookup_Types
.
Все операции CRUD и индексы для Lookup_Types
в порядке, но затем мне нужно вернуть Lookup_name
не Lookup_type_id
.
Мои модели:
public class Lookup_Type
{
[Key]
public int Id { get; set; }
[Required(ErrorMessage = "This field is required")]
[StringLength(50, MinimumLength = 3,
ErrorMessage = "Name Should be minimum 3 characters and a maximum of 50 characters")]
public string Lookup_name { get; set; }
}
public class Lookup
{
[Key]
public int Id { get; set; }
[Required(ErrorMessage = "This field is required")]
[StringLength(50, MinimumLength = 3,
ErrorMessage = "Name Should be minimum 3 characters and a maximum of 50 characters")]
public string Lookup_name { get; set; }
public int Lookup_type_id { get; set; }
}
public async Task<IActionResult> GetAll()
{
return Json(new { data = await _db.Lookups.ToListAsync() });
}
В GetAll()
, мне нужно вернуть Lookup_name
в Lookup_Type
модели, а не Lookup_type_id