我有以下 DBML 修改(我使用 Linq to SQL 作为 DAL)。
public interface ILinqSQLObject { }
// these are objects from SQL Server mapped into Linq to SQL
public partial class NEWDEBT : ILinqSQLObject { }
public partial class OLDDEBT : ILinqSQLObject { }
public partial class VIPDEBT : ILinqSQLObject { }
有了它,我可以在其他区域更正确地操作我的 Linq 对象。
我刚刚完成了一个 IRepository 模式实现。
public interface IDebtManager<T>
{
IQueryable<T> GetAllDebts();
IQueryable T GetSpecificDebt(System.Linq.Expressions.Expression<Func<T, bool>> predicate);
void Insert(T debt);
// other methods
}
public class DebtManager<T> : IDebtManager<T> where T : class, ILinqSQLObject
{
DebtContext conn = new DebtContext();
protected System.Data.Linq.Table<T> table;
public DebtManager()
{
table = conn.GetTable<T>();
}
public void Insert(T debt)
{
throw new NotImplementedException();
}
public IQueryable<T> GetSpecificDebt(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
{
return table.Where(predicate);
}
public IQueryable<T> GetAllDebts()
{
return table;
}
}
这完美无瑕。但是,有时我不知道在编译时我将使用哪个特定的表。为此,我尝试为我的 DebtManager 创建一个简单的通用工厂。
public static class DebtFactoryManager
{
public static DebtManager<ILinqSQLObject> GetDebtManager(string debtType)
{
switch (debtType)
{
case "New Client":
return new DebtManager<NEWDEBT>();
case "Old Client":
return new DebtManager<OLDDEBT>();
case "VIP Client":
return new DebtManager<VIPDEBT>();
default:
return new DebtManager<NEWDEBT>();
}
return null;
}
}
但是它不起作用。它说我不能“隐式转换DebtManager<NEWDEBT>
为DebtManager<ILinqSQLObject>
”,但是如果 NEWDEBT 实现了 ILinqSQLObject,为什么编译器不能识别它?显然我在做一些错误,但我看不到它。