EntityFramework.MemoryJoin
EntityFramework.MemoryJoin copied to clipboard
Support Higher interface types
Currently, the .FromLocalList
methods only accept an IList<T>
.
Since this package is converting an in-memory collection, I see no reason why an IEnumerable<T>
or something slightly lower down cannot be used instead.
IEnumerable
would be ideal, but something like ICollection
would also work.
Why do you want to use IEnumerable?