如何在接口内获取已实现类的类型?

时间:2014-12-11 08:04:47

标签: c# entity-framework interface

我有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是实现接口的类的类型

0 个答案:

没有答案