using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace API_development { [Table ("UsersHobbies")] public class UsersHobbies { [Key] public int idRecord { get; set; } [Column("idHobbi")] public int idHobbi { get; set; } [Column("idUsers")] public int idUser { get; set; } } }