Build Error

Hi Atanas! Here you go…

Probably Date…lol

Imports System
Imports System.Collections.Generic
Imports System.ComponentModel.DataAnnotations
Imports System.ComponentModel.DataAnnotations.Schema

Namespace EdStopRad.Models.EdStopRadData
<Table(“StudentScholarshipJunctions”, Schema:=“dbo”)>
Public Partial Class StudentScholarshipJunction

Public Property StudentsID () As Integer

<ForeignKey("StudentsID")>
Public Property Student() As Student
Public Property ScholarshipsID () As Integer

<ForeignKey("ScholarshipsID")>
Public Property Scholarship() As Scholarship
Public Property Date () As DateTime

End Class
End Namespace