c# - Best Practice to Use SQL Server Table in Client Side -


can please recommend best practice use sql server tables on client side? (asp.net c#)

for example: let's have table more 2 millions rows, when query in website takes long respond. idea loading tables in client side query without going server every single query.

i'm not sure possible...or if can implemented in other way...

i'm using sql sever 2012 , visual studio 2013 asp.net c#

thanks,

  1. don't it. don't load 2m rows client.
  2. a number of controls, i.e. telerik , infragistics, provide buffered, paginated , virtual data access. don't re-invent wheel.
  3. if must, use dapper, default buffers data.

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -