|
|
|
|
|
by pjerem
646 days ago
|
|
It’s exactly what Entity Framework does in dotnet. It allows you to query the database like it’s an enumerable. In fact, in EF, an IQueryable (which is the interface you use to query a SQL dataset) implements IEnumerable. So you can 100% manipulate your dataset like a normal array/list. Sure it comes with its own shenanigans but 90% of the time it’s easy to read and to manipulate. |
|