I have the following object:
namespace MODELO{
[Table("Check_lists_PVR")]
public class Check_lists_PVR{
[Key]
private Int64 NroCL { get; set; }
public DateTime Fecha { get; set; }
public string Turno { get; set; }
public string PVR { get; set; }
public string Operador { get; set; }
}
}
My intention is to add 3 lists as attributes. The object itself is a check list, each item is divided into "item, status and observation", and the check list consists of 16 items. my idea is to make a list for "items" another for "states" and a last paragraph "observations" but all my attempts to create a list throw error. help please