次の 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を実装している場合、コンパイラがそれを認識しないのはなぜですか? 明らかに私はいくつかの間違いをしていますが、私はそれを見ることができません。