I am retrieving all tables, and make sql. But I want something that can handle Take, Skip. Differences between databases.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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).