i am mapping with dynamic, so basicaly i have a function that recieve a query string and some infos about how to bind certain parameters to other queries to bind new values so the code look like this Call function Results = dapper.query(queryFormainTable) ResultsList = results as IEnumerable Foreach (item in resultsList) Foreach (bindQuery in bindQueries) Item[bindQuery.relatedVarName] = dapper.query(bindQuery, parameters) Parameters are generated depending on the value of item to set something like orderId == item.id Everything work as expected, but i wonder if there are ways to make it more efficient?
@MSAsharaf Жыл бұрын
Superb
@bishaladhikari9499 Жыл бұрын
Love it!
@nangdalet5994 Жыл бұрын
Can you demo how to create pagination pls?
@ravindradevrani Жыл бұрын
I already have create 3 or 4 different videos on pagination. Check this one, it is with apis and dapper kzbin.info/www/bejne/aJzcZXRvmb6ar9E
@nangdalet5994 Жыл бұрын
@@ravindradevrani one more about module Order on method OrderDetail Can you demo using store procedure when insert and get ?