Files
SqlEntityFrameWork/CodeFirstExistingDatabase/Course.cs

38 lines
1.0 KiB
C#

namespace CodeFirstExistingDatabase
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("Courses")]
public partial class Course
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Course()
{
Tags = new HashSet<Tag>();
}
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public Category Category { get; set; }
public int Level { get; set; }
public float FullPrice { get; set; }
public int? Author_Id { get; set; }
public virtual Author Author { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Tag> Tags { get; set; }
}
}