I am retrieving all tables, and make sql. But I want something that can handle Take, Skip. Differences between databases.

有帮助吗?

解决方案

Skip/take/similar are mapper functions... If you don't know the schema you can't have a model to map to, really. Ultimately, then, I suspect you're looking at more general tools like SQL and DataTable (storing data from an unknown schema is one of the very few uses I have for DataTable). This won't have skip/take, but most databases have a SQL way of doing that (for example, row-number in SQL server).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top