neisbut / EntityFramework.MemoryJoin

Extension for EntityFramework for joins to in-memory data
MIT License
56 stars 24 forks source link

Support Higher interface types #30

Open be1223 opened 1 year ago

be1223 commented 1 year ago

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.

expert4pro commented 1 year ago

Why do you want to use IEnumerable?