Why is this implicit cast is not possible?

170 Views Asked by At

Given classes and interfaces below, I am wondering why implicit cast:

ISomeModelAbstract<IBasicModel> x = new ConcreteClass();

Is impossible. I tried

public interface ISomeModelAbstract<out T> where T: IBasicModel

But then I cannot use GetById and GetAll method. I appreciate any help or hint. Thank you.

public interface IBasicModel {
    string _id { get; set; }
}

public class SomeModel: IBasicModel {
    public string _id { get; set; }

    /* some other properties! */
}

public interface ISomeModelAbstract<T> where T: IBasicModel
{
    bool Save(T model);
    T GetById(string id);
    IEnumerable<T> GetAll();
    bool Update(string id, T model);
    bool Delete(string id);
}

public abstract class SomeModelAbstract<T> : ISomeModelAbstract<T> where T : IBasicModel
{
    public bool Save(T model)
    {
        throw new System.NotImplementedException();
    }

    public T GetById(string id)
    {
        throw new System.NotImplementedException();
    }

    public IEnumerable<T> GetAll()
    {
        throw new System.NotImplementedException();
    }

    public bool Update(string id, T model)
    {
        throw new System.NotImplementedException();
    }

    public bool Delete(string id)
    {
        throw new System.NotImplementedException();
    }
}

public interface IConcreteClass: ISomeModelAbstract<SomeModel> { }

public class ConcreteClass: SomeModelAbstract<SomeModel>, IConcreteClass { }
2

There are 2 best solutions below

0
On BEST ANSWER

Another answer already describes the reason why it doesn't work in current state. I want to add that in such cases it's often useful to extract covariant or contravariant parts of your interface (or both) into separate interface(s). For example:

// covariant part, T is used only as return value
// ISomeModelRead is not the best name of course
public interface ISomeModelRead<out T> where T : IBasicModel {
    T GetById(string id);
    IEnumerable<T> GetAll();
}

// the rest of interface, also implementing covariant part
public interface ISomeModelAbstract<T> : ISomeModelRead<T> where T : IBasicModel  {
    bool Save(T model);
    bool Update(string id, T model);
    bool Delete(string id);
}

Now everything works the same, except you can do:

ISomeModelRead<IBasicModel> x = new ConcreteClass();
x.GetAll();
x.GetById("id");
0
On

This doesn't work because of Covariance concern. Consider this sample code.

public class SomeModel2: IBasicModel {
    public string _id { get; set; }

    /* some other properties! */
}

After that, you can pass for example some object of SomeModel2 to Save method of x and obviously, this is not OK.

    ISomeModelAbstract<IBasicModel> x = new ConcreteClass();
    var m = new SomeModel2();
    x.Save(m);

To preventing this you should tell implicitly that you use your generic type only in return (out) places, not in inputs. For example:

public interface ISomeModelAbstract<out T> where T: IBasicModel

And after doing this, unfortunately, you can't use Save and Update method in your ISomeModelAbstract interface. Because they use T in parameter (input) place.

For more information please see link below: http://tomasp.net/blog/variance-explained.aspx/