Array
(
[dirname] => .
[basename] => State.cs
[extension] => cs
[filename] => State
)
1. file=./State.cs
2. file=.//State.cs
3. file=State.cs
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace CustomerMaintenance.Models.DataLayer;
public partial class State
{
[Key]
[StringLength(2)]
[Unicode(false)]
public string StateCode { get; set; } = null!;
[StringLength(20)]
[Unicode(false)]
public string StateName { get; set; } = null!;
[InverseProperty("StateNavigation")]
public virtual ICollection Customers { get; } = new List();
}