I am having issues with filling an object with values.
One of the properties is List<IFoo> foos
later when I want to fill my model with data from my database I want to put List<Foo>
in place on that property.
I thought since Foo
correctly implements the IFoo
interface this should work (right?) but I get an error saying that I can't implicity convert List<Foo>
to List<IFoo>
I think I am looking past something... Thank you for helping out in advance