19 lines
457 B
C#
19 lines
457 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace FahrzeugProjekt
|
|
{
|
|
[Table("Orte")]
|
|
public class Ort
|
|
{
|
|
[Column("OrtID")]
|
|
public int OrtID { get; set; }
|
|
|
|
[Column("Stadt")] // DB hat Stadt, nicht Stadtname
|
|
public string Stadtname { get; set; }
|
|
|
|
[Column("Land")] // Zusätzliche Spalte die du hast
|
|
public string Land { get; set; }
|
|
}
|
|
}
|