abe545 / CodeOnlyStoredProcedures

A library for easily calling Stored Procedures in .NET using only code (no xml or gui).
MIT License
4 stars 3 forks source link

Hierarchical results that get the children by interface throws a KeyNotFoundException #72

Closed abe545 closed 8 years ago

abe545 commented 8 years ago

Trying to get a result set fails for Parent:

public interface IFoo { .. }

public class Parent
{
    public int Id { get; set; }
    public IEnumerable<IFoo> Foos { get; set; }
}