web-dev-qa-db-ja.com

NInject with Generic interface

1つのインターフェースと1つのクラスを定義しました。

public interface IRepository<T>
{
}

public class RoleRepository:IRepository<Domain_RoleInfo>
{
}

ここに注入:

public RoleService
{
    [Inject]
    public RoleService(IRepository<Domain_RoleInfo> rep)
    {
        _roleRep=rep;
    }
}

Ninjectを使用して依存性注入を実行するにはどうすればよいですか?バインド方法を教えてください。

私は以下のようにヘルパークラスを書きました、それは非ジェネリックインターフェースでうまく動作します。しかしそれをリファクタリングする方法は上記のようにジェネリックインターフェースをサポートしますか?

public class RegisterNinjectModule : NinjectModule
{
    public override void Load()
    {
        BindServices();
        BindRepositories();
    }

    private void BindServices()
    {

        FindAndBindInterfaces("RealMVC.Service.Interfaces", "RealMVC.Services");            
    }

    private void BindRepositories()
    {
        FindAndBindInterfaces("RealMVC.Repository.Interfaces", "RealMVC.Repositories");   
    }

    private void FindAndBindInterfaces(string interfaceAssemblyName, string implAssemblyName)
    {
        //Get all interfaces
        List<Type> interfaces = Assembly.Load(interfaceAssemblyName).GetTypes().AsQueryable().Where(x => x.IsInterface).ToList();
        IQueryable<Type> ts = Assembly.Load(implAssemblyName).GetTypes().AsQueryable().Where(x => x.IsClass);

        foreach (Type intf in interfaces)
        {
            Type t = ts.Where(x => x.GetInterface(intf.Name) != null).FirstOrDefault();
            if (t != null)
            {
                Bind(intf).To(t).InSingletonScope();
            }
        }
    }


}
42
Sam Zhou

これはうまくいくはずです:-

Bind(typeof(IRepository<>)).To(typeof(Repository<>));

どこ:-

IRepository <>は次の形式のインターフェースです:-

public interface IRepository<T> where T : class
{
 //...
}

Repository <>は次の形式のクラスです:-

public class Repository<T> : IRepository<T> where T : class
{
  //...
}

これがお役に立てば幸いです:-)

81
Izmoto

これはあなたが求めていることを達成するのに役立つはずです。

まず、2つのクラス(InterfaceTypeDefinitionBindingDefinition)を定義しましょう。

InterfaceTypeDefinitionは、具象型とそのインターフェースに関する情報を保持します。メソッドIsOpenGenericは、TypeExtensionsクラスで定義されています。

public class InterfaceTypeDefinition
{
    public InterfaceTypeDefinition(Type type)
    {
        Implementation = type;
        Interfaces = type.GetInterfaces();
    }

    /// <summary>
    /// The concrete implementation.
    /// </summary>
    public Type Implementation { get; private set; }

    /// <summary>
    /// The interfaces implemented by the implementation.
    /// </summary>
    public IEnumerable<Type> Interfaces { get; private set; }

    /// <summary>
    /// Returns a value indicating whether the implementation
    /// implements the specified open generic type.
    /// </summary>
    public bool ImplementsOpenGenericTypeOf(Type openGenericType)
    {
        return Interfaces.Any(i => i.IsOpenGeneric(openGenericType));
    }

    /// <summary>
    /// Returns the service type for the concrete implementation.
    /// </summary>
    public Type GetService(Type openGenericType)
    {
        return Interfaces.First(i => i.IsOpenGeneric(openGenericType))
            .GetGenericArguments()
            .Select(arguments => openGenericType.MakeGenericType(arguments))
            .First();
    }
}

BindingDefinitionは、サービスと具体的な実装の間のバインディングに関する情報を保持します。

public class BindingDefinition
{
    public BindingDefinition(
        InterfaceTypeDefinition definition, Type openGenericType)
    {
        Implementation = definition.Implementation;
        Service = definition.GetService(openGenericType);
    }

    public Type Implementation { get; private set; }

    public Type Service { get; private set; }
}

次に、必要な情報を取得する拡張メソッドを実装しましょう。

public static class TypeExtensions
{
    public static IEnumerable<BindingDefinition> GetBindingDefinitionOf(
      this IEnumerable<Type> types, Type openGenericType)
    {
        return types.Select(type => new InterfaceTypeDefinition(type))
            .Where(d => d.ImplementsOpenGenericTypeOf(openGenericType))
            .Select(d => new BindingDefinition(d, openGenericType));
    }

    public static bool IsOpenGeneric(this Type type, Type openGenericType)
    {
        return type.IsGenericType 
            && type.GetGenericTypeDefinition().IsAssignableFrom(openGenericType);
    }
}

これらのクラスを使用して、モジュールのバインディングを初期化できるようになりました。

public class RepositoryModule : NinjectModule
{
    public override void Load()
    {
        var definitions = Assembly.GetExecutingAssembly().GetTypes()
            .GetBindingDefinitionOf(typeof(IRepository<>));

        foreach (var definition in definitions)
        {
            Bind(definition.Service).To(definition.Implementation);
        }
    }
}
5
mrydengren

Ninject規則拡張機能をインポートすると、そのGenericBindingGeneratorが役立つはずです。汎用インターフェースのサポートを追加します。

2
neontapir

FindAndBindInterfacesメソッドに関する質問:foreach内で、intf変数に「クロージャー」の問題がありませんか?閉鎖の問題がどのように機能するのか、まだわかりません。

とにかく、安全のために、foreachを次のようなものに変更する必要があると思います。

foreach (Type intf in interfaces)
    {
        var tmp = intf;
        Type t = ts.Where(x => x.GetInterface(tmp.Name) != null).FirstOrDefault();
        if (t != null)
        {
            Bind(intf).To(t).InSingletonScope();
        }
    }
0
Ghidello