using System.Collections.Generic; using FreeSql; using FreeSql.DataAnnotations; namespace JXCMS.CMS.Movie.Entity { public class ActorEntity : BaseEntity { public string ActorName { get; set; } [Navigate(ManyToMany = typeof(MovieActorEntity))] public List MovieEntities { get; set; } } }