我有一堆表,它们都有一个名为SessionID的Guid类型的列,这是创建实体的会话的ID。我正在尝试编写一个通用类来计算特定会话的实体和特定的实体类型。有没有人用LLBLGen做过类似的事情?
public class EntityCounterControl<T> where T : EntityBase2, IEntity2
{
public int CountEntities(Guid sessionID)
{
//How can I count the entities for type T?
}
};
答案 0 :(得分:0)
你真的需要使用泛型吗?您可以创建一个定义SessionId属性的接口,让您的实体实现它。