我有Group<t>
课程:
public class Group<t> where t : IGroupable
{
public int ID { get; set; }
public string Name { get; set; }
public IList<t> Members { get; set; }
}
但我在定义IGroupable
界面时遇到问题。
问题是因为我想在数据库中建立多对多连接,IGroupable
应该包含IList<Group<t>> Groups { get; set; }
,其中t
是实现接口的类的类型