Witam
Posiadam zdeklarowane w modelu klasy bazy: C201, C202, C203,C204 i tak dale aż do C2016.
Do każdej klasy mam zrobione w MVC 5 tak zwane CRUD osobno. Wykaz poszczególnych pozycji też
jest osobno.
Potrzebuję teraz zrobić jeszcze widok dla wszystkich tych klas z ewentualnym utworzeniem CRUD-a. Czy jest taka możliwość?
Oto przykład jednej klasy w Models:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
using System.Web.Mvc;
[Table("201")]
public partial class C201
{
public int? Id { get; set; }
public string NrDzialki { get; set; }
public string Ulica { get; set; }
public string Kategoria { get; set; }
public string Uwagi { get; set; }
}
takich samych tabel mam 16 sztuk. W bazie SQL mam oczywiście też takich tabel 16 wszystkie są z takimi samymi nazwami. Potrzebuję połączyć je wszystkie w jedną w Modelu aby później zrobić na tej podstawie kontroler MVC z EntityFramework.
Proszę o wyrozumiałość. Jestem początkujący.