using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entities { public class LangueEntity { [Key] public string name { get; set; } public ICollection vocabularys { get; set; } = new List(); } }