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.
Currently, the
.FromLocalListmethods only accept anIList<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.IEnumerablewould be ideal, but something likeICollectionwould also work.