Does C# offer some nice method to cast a single entity of type T to IEnumerable?
T
IEnumerable
The only way I can think of is something like:
I use
Enumerable.Repeat(entity, 1);