Here's a simple syntax question (I hope), I know how to constrain one generic type using the where clause, but how to constrain two generic types?
Maybe the easiest way is to write down what my best guess as to the syntax was.
public class GenericDaoGetByIdTests<TDao, TComponent> : BaseDaoTests
where TDao : IDao<TComponent>, TComponent : EDC2ORMComponent {
public void GetByIdTest(int id) { }
}
This gives me an error. Anyone know what the proper syntax is?