error.log.txt 654 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291
  1. ------------------------Error Log start----------------------------
  2. Date:-23-03-2020 17:04:52
  3. Application Name :Npgsql
  4. Error Message :Exception while connecting
  5. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 693
  6. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 519
  7. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 382
  8. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnection.cs:line 241
  9. --- End of stack trace from previous location where exception was thrown ---
  10. at Npgsql.NpgsqlConnection.Open() in C:\projects\npgsql\src\Npgsql\NpgsqlConnection.cs:line 119
  11. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 155
  12. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  13. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  14. ------------------------Error Log End----------------------------
  15. ------------------------Error Log start----------------------------
  16. Date:-23-03-2020 17:05:25
  17. Application Name :Npgsql
  18. Error Message :Exception while connecting
  19. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 693
  20. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 519
  21. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 382
  22. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnection.cs:line 241
  23. --- End of stack trace from previous location where exception was thrown ---
  24. at Npgsql.NpgsqlConnection.Open() in C:\projects\npgsql\src\Npgsql\NpgsqlConnection.cs:line 119
  25. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 155
  26. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  27. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  28. ------------------------Error Log End----------------------------
  29. ------------------------Error Log start----------------------------
  30. Date:-24-03-2020 17:03:56
  31. Application Name :Npgsql
  32. Error Message :42P01: relation "holiday_list" does not exist
  33. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  34. --- End of stack trace from previous location where exception was thrown ---
  35. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  36. --- End of stack trace from previous location where exception was thrown ---
  37. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  38. --- End of stack trace from previous location where exception was thrown ---
  39. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  40. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  41. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  42. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  43. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  44. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  45. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  46. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  47. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  48. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  49. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  50. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  51. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  52. ------------------------Error Log End----------------------------
  53. ------------------------Error Log start----------------------------
  54. Date:-24-03-2020 17:04:03
  55. Application Name :Npgsql
  56. Error Message :42P01: relation "holiday_list" does not exist
  57. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  58. --- End of stack trace from previous location where exception was thrown ---
  59. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  60. --- End of stack trace from previous location where exception was thrown ---
  61. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  62. --- End of stack trace from previous location where exception was thrown ---
  63. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  64. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  65. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  66. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  67. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  68. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  69. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  70. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  71. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  72. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  73. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  74. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  75. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  76. ------------------------Error Log End----------------------------
  77. ------------------------Error Log start----------------------------
  78. Date:-24-03-2020 17:32:10
  79. Application Name :Npgsql
  80. Error Message :42P01: relation "holiday_list" does not exist
  81. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  82. --- End of stack trace from previous location where exception was thrown ---
  83. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  84. --- End of stack trace from previous location where exception was thrown ---
  85. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  86. --- End of stack trace from previous location where exception was thrown ---
  87. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  88. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  89. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  90. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  91. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  92. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  93. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  94. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  95. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  96. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  97. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  98. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  99. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  100. ------------------------Error Log End----------------------------
  101. ------------------------Error Log start----------------------------
  102. Date:-24-03-2020 17:32:25
  103. Application Name :Npgsql
  104. Error Message :42P01: relation "holiday_list" does not exist
  105. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  106. --- End of stack trace from previous location where exception was thrown ---
  107. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  108. --- End of stack trace from previous location where exception was thrown ---
  109. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  110. --- End of stack trace from previous location where exception was thrown ---
  111. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  112. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  113. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  114. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  115. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  116. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  117. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  118. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  119. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  120. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  121. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  122. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  123. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  124. ------------------------Error Log End----------------------------
  125. ------------------------Error Log start----------------------------
  126. Date:-24-03-2020 17:34:13
  127. Application Name :Npgsql
  128. Error Message :42P01: relation "holiday_list" does not exist
  129. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  130. --- End of stack trace from previous location where exception was thrown ---
  131. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  132. --- End of stack trace from previous location where exception was thrown ---
  133. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  134. --- End of stack trace from previous location where exception was thrown ---
  135. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  136. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  137. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  138. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  139. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  140. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  141. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  142. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  143. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  144. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  145. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  146. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  147. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  148. ------------------------Error Log End----------------------------
  149. ------------------------Error Log start----------------------------
  150. Date:-24-03-2020 17:35:26
  151. Application Name :Npgsql
  152. Error Message :42P01: relation "holiday_list" does not exist
  153. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  154. --- End of stack trace from previous location where exception was thrown ---
  155. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  156. --- End of stack trace from previous location where exception was thrown ---
  157. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  158. --- End of stack trace from previous location where exception was thrown ---
  159. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  160. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  161. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  162. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  163. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  164. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  165. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  166. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  167. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  168. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  169. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  170. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  171. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  172. ------------------------Error Log End----------------------------
  173. ------------------------Error Log start----------------------------
  174. Date:-24-03-2020 21:38:30
  175. Application Name :Npgsql
  176. Error Message :42P01: relation "holiday_list" does not exist
  177. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  178. --- End of stack trace from previous location where exception was thrown ---
  179. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlConnector.cs:line 973
  180. --- End of stack trace from previous location where exception was thrown ---
  181. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 275
  182. --- End of stack trace from previous location where exception was thrown ---
  183. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming) in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 458
  184. at Npgsql.NpgsqlDataReader.NextResult() in C:\projects\npgsql\src\Npgsql\NpgsqlDataReader.cs:line 298
  185. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1195
  186. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) in C:\projects\npgsql\src\Npgsql\NpgsqlCommand.cs:line 1076
  187. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  188. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  189. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  190. at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable)
  191. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  192. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  193. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\App_Data\CommonRepository.cs:line 159
  194. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaService.cs:line 26
  195. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(Object data) in D:\Kezia\Projects\KLI\Code\LAPS_COMMONTOOL\WK_KLI_LAPS_COMMONTOOL_Service\WK_KLI_LAPS_COMMONTOOL_Service\Controllers\WorkArea\WorkAreaApiController.cs:line 43
  196. ------------------------Error Log End----------------------------
  197. ------------------------Error Log start----------------------------
  198. Date:-05-09-2024 17:50:58
  199. Application Name :Npgsql
  200. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  201. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  202. --- End of stack trace from previous location where exception was thrown ---
  203. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  204. --- End of stack trace from previous location where exception was thrown ---
  205. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  206. --- End of stack trace from previous location where exception was thrown ---
  207. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  208. at Npgsql.NpgsqlDataReader.NextResult()
  209. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  210. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  211. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  212. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  213. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  214. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  215. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  216. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  217. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  218. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\App_Data\CommonRepository.cs:line 156
  219. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  220. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 51
  221. ------------------------Error Log End----------------------------
  222. ------------------------Error Log start----------------------------
  223. Date:-09-09-2024 19:59:00
  224. Application Name :Npgsql
  225. Error Message :42601: each UNION query must have the same number of columns
  226. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  227. --- End of stack trace from previous location where exception was thrown ---
  228. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  229. --- End of stack trace from previous location where exception was thrown ---
  230. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  231. --- End of stack trace from previous location where exception was thrown ---
  232. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  233. at Npgsql.NpgsqlDataReader.NextResult()
  234. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  235. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  236. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  237. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  238. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  239. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  240. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  241. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  242. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  243. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\App_Data\CommonRepository.cs:line 158
  244. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  245. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 52
  246. ------------------------Error Log End----------------------------
  247. ------------------------Error Log start----------------------------
  248. Date:-09-09-2024 20:00:46
  249. Application Name :Npgsql
  250. Error Message :42804: UNION types bigint and json cannot be matched
  251. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  252. --- End of stack trace from previous location where exception was thrown ---
  253. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  254. --- End of stack trace from previous location where exception was thrown ---
  255. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  256. --- End of stack trace from previous location where exception was thrown ---
  257. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  258. at Npgsql.NpgsqlDataReader.NextResult()
  259. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  260. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  261. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  262. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  263. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  264. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  265. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  266. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  267. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  268. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\App_Data\CommonRepository.cs:line 158
  269. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  270. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\Thasleembanu\Project\LNBPM\LNBPM Common Tool\LAPS-CommonTools-dev\laps-commontools\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 52
  271. ------------------------Error Log End----------------------------
  272. ------------------------Error Log start----------------------------
  273. Date:-26-09-2024 18:15:09
  274. Application Name :Npgsql
  275. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  276. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  277. --- End of stack trace from previous location where exception was thrown ---
  278. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  279. --- End of stack trace from previous location where exception was thrown ---
  280. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  281. --- End of stack trace from previous location where exception was thrown ---
  282. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  283. at Npgsql.NpgsqlDataReader.NextResult()
  284. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  285. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  286. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  287. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  288. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  289. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  290. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  291. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  292. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  293. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  294. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  295. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 53
  296. ------------------------Error Log End----------------------------
  297. ------------------------Error Log start----------------------------
  298. Date:-28-09-2024 16:27:14
  299. Application Name :Npgsql
  300. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  301. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  302. --- End of stack trace from previous location where exception was thrown ---
  303. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  304. --- End of stack trace from previous location where exception was thrown ---
  305. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  306. --- End of stack trace from previous location where exception was thrown ---
  307. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  308. at Npgsql.NpgsqlDataReader.NextResult()
  309. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  310. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  311. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  312. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  313. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  314. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  315. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  316. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  317. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  318. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  319. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  320. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 53
  321. ------------------------Error Log End----------------------------
  322. ------------------------Error Log start----------------------------
  323. Date:-28-09-2024 16:44:24
  324. Application Name :Npgsql
  325. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  326. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  327. --- End of stack trace from previous location where exception was thrown ---
  328. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  329. --- End of stack trace from previous location where exception was thrown ---
  330. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  331. --- End of stack trace from previous location where exception was thrown ---
  332. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  333. at Npgsql.NpgsqlDataReader.NextResult()
  334. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  335. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  336. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  337. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  338. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  339. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  340. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  341. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  342. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  343. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  344. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  345. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in C:\Users\rajalakshmi.t\Downloads\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 53
  346. ------------------------Error Log End----------------------------
  347. ------------------------Error Log start----------------------------
  348. Date:-9/30/2024 3:06:46 PM
  349. Application Name :Npgsql
  350. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  351. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  352. --- End of stack trace from previous location where exception was thrown ---
  353. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  354. --- End of stack trace from previous location where exception was thrown ---
  355. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  356. --- End of stack trace from previous location where exception was thrown ---
  357. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  358. at Npgsql.NpgsqlDataReader.NextResult()
  359. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  360. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  361. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  362. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  363. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  364. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  365. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  366. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  367. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  368. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  369. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  370. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  371. ------------------------Error Log End----------------------------
  372. ------------------------Error Log start----------------------------
  373. Date:-9/30/2024 3:50:36 PM
  374. Application Name :Npgsql
  375. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  376. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  377. --- End of stack trace from previous location where exception was thrown ---
  378. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  379. --- End of stack trace from previous location where exception was thrown ---
  380. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  381. --- End of stack trace from previous location where exception was thrown ---
  382. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  383. at Npgsql.NpgsqlDataReader.NextResult()
  384. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  385. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  386. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  387. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  388. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  389. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  390. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  391. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  392. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  393. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  394. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  395. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  396. ------------------------Error Log End----------------------------
  397. ------------------------Error Log start----------------------------
  398. Date:-16-Oct-24 5:56:39 PM
  399. Application Name :Npgsql
  400. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  401. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  402. --- End of stack trace from previous location where exception was thrown ---
  403. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  404. --- End of stack trace from previous location where exception was thrown ---
  405. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  406. --- End of stack trace from previous location where exception was thrown ---
  407. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  408. at Npgsql.NpgsqlDataReader.NextResult()
  409. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  410. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  411. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  412. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  413. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  414. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  415. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  416. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  417. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  418. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  419. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  420. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  421. ------------------------Error Log End----------------------------
  422. ------------------------Error Log start----------------------------
  423. Date:-28-Nov-24 11:27:39 AM
  424. Application Name :Npgsql
  425. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  426. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  427. --- End of stack trace from previous location where exception was thrown ---
  428. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  429. --- End of stack trace from previous location where exception was thrown ---
  430. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  431. --- End of stack trace from previous location where exception was thrown ---
  432. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  433. at Npgsql.NpgsqlDataReader.NextResult()
  434. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  435. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  436. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  437. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  438. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  439. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  440. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  441. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  442. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  443. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  444. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  445. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  446. ------------------------Error Log End----------------------------
  447. ------------------------Error Log start----------------------------
  448. Date:-28-Nov-24 11:49:47 AM
  449. Application Name :Npgsql
  450. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  451. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  452. --- End of stack trace from previous location where exception was thrown ---
  453. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  454. --- End of stack trace from previous location where exception was thrown ---
  455. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  456. --- End of stack trace from previous location where exception was thrown ---
  457. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  458. at Npgsql.NpgsqlDataReader.NextResult()
  459. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  460. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  461. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  462. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  463. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  464. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  465. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  466. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  467. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  468. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  469. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  470. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  471. ------------------------Error Log End----------------------------
  472. ------------------------Error Log start----------------------------
  473. Date:-28-Nov-24 11:56:47 AM
  474. Application Name :Npgsql
  475. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  476. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  477. --- End of stack trace from previous location where exception was thrown ---
  478. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  479. --- End of stack trace from previous location where exception was thrown ---
  480. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  481. --- End of stack trace from previous location where exception was thrown ---
  482. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  483. at Npgsql.NpgsqlDataReader.NextResult()
  484. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  485. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  486. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  487. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  488. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  489. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  490. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  491. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  492. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  493. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  494. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  495. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  496. ------------------------Error Log End----------------------------
  497. ------------------------Error Log start----------------------------
  498. Date:-28-Nov-24 11:58:10 AM
  499. Application Name :Npgsql
  500. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  501. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  502. --- End of stack trace from previous location where exception was thrown ---
  503. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  504. --- End of stack trace from previous location where exception was thrown ---
  505. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  506. --- End of stack trace from previous location where exception was thrown ---
  507. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  508. at Npgsql.NpgsqlDataReader.NextResult()
  509. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  510. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  511. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  512. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  513. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  514. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  515. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  516. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  517. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  518. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  519. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  520. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  521. ------------------------Error Log End----------------------------
  522. ------------------------Error Log start----------------------------
  523. Date:-28-Nov-24 12:03:05 PM
  524. Application Name :Npgsql
  525. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  526. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  527. --- End of stack trace from previous location where exception was thrown ---
  528. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  529. --- End of stack trace from previous location where exception was thrown ---
  530. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  531. --- End of stack trace from previous location where exception was thrown ---
  532. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  533. at Npgsql.NpgsqlDataReader.NextResult()
  534. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  535. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  536. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  537. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  538. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  539. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  540. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  541. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  542. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  543. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  544. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  545. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  546. ------------------------Error Log End----------------------------
  547. ------------------------Error Log start----------------------------
  548. Date:-28-Nov-24 12:08:00 PM
  549. Application Name :Npgsql
  550. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  551. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  552. --- End of stack trace from previous location where exception was thrown ---
  553. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  554. --- End of stack trace from previous location where exception was thrown ---
  555. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  556. --- End of stack trace from previous location where exception was thrown ---
  557. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  558. at Npgsql.NpgsqlDataReader.NextResult()
  559. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  560. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  561. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  562. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  563. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  564. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  565. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  566. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  567. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  568. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  569. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  570. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  571. ------------------------Error Log End----------------------------
  572. ------------------------Error Log start----------------------------
  573. Date:-28-Nov-24 12:11:12 PM
  574. Application Name :Npgsql
  575. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  576. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  577. --- End of stack trace from previous location where exception was thrown ---
  578. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  579. --- End of stack trace from previous location where exception was thrown ---
  580. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  581. --- End of stack trace from previous location where exception was thrown ---
  582. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  583. at Npgsql.NpgsqlDataReader.NextResult()
  584. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  585. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  586. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  587. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  588. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  589. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  590. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  591. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  592. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  593. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  594. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  595. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  596. ------------------------Error Log End----------------------------
  597. ------------------------Error Log start----------------------------
  598. Date:-28-Nov-24 12:14:23 PM
  599. Application Name :Npgsql
  600. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  601. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  602. --- End of stack trace from previous location where exception was thrown ---
  603. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  604. --- End of stack trace from previous location where exception was thrown ---
  605. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  606. --- End of stack trace from previous location where exception was thrown ---
  607. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  608. at Npgsql.NpgsqlDataReader.NextResult()
  609. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  610. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  611. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  612. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  613. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  614. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  615. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  616. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  617. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  618. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  619. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  620. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  621. ------------------------Error Log End----------------------------
  622. ------------------------Error Log start----------------------------
  623. Date:-28-Nov-24 1:01:41 PM
  624. Application Name :Npgsql
  625. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  626. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  627. --- End of stack trace from previous location where exception was thrown ---
  628. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  629. --- End of stack trace from previous location where exception was thrown ---
  630. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  631. --- End of stack trace from previous location where exception was thrown ---
  632. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  633. at Npgsql.NpgsqlDataReader.NextResult()
  634. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  635. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  636. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  637. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  638. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  639. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  640. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  641. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  642. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  643. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  644. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  645. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  646. ------------------------Error Log End----------------------------
  647. ------------------------Error Log start----------------------------
  648. Date:-28-Nov-24 1:03:56 PM
  649. Application Name :Npgsql
  650. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  651. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  652. --- End of stack trace from previous location where exception was thrown ---
  653. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  654. --- End of stack trace from previous location where exception was thrown ---
  655. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  656. --- End of stack trace from previous location where exception was thrown ---
  657. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  658. at Npgsql.NpgsqlDataReader.NextResult()
  659. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  660. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  661. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  662. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  663. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  664. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  665. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  666. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  667. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  668. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  669. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  670. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  671. ------------------------Error Log End----------------------------
  672. ------------------------Error Log start----------------------------
  673. Date:-28-Nov-24 1:05:20 PM
  674. Application Name :Npgsql
  675. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  676. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  677. --- End of stack trace from previous location where exception was thrown ---
  678. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  679. --- End of stack trace from previous location where exception was thrown ---
  680. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  681. --- End of stack trace from previous location where exception was thrown ---
  682. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  683. at Npgsql.NpgsqlDataReader.NextResult()
  684. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  685. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  686. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  687. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  688. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  689. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  690. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  691. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  692. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  693. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  694. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  695. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  696. ------------------------Error Log End----------------------------
  697. ------------------------Error Log start----------------------------
  698. Date:-28-Nov-24 1:07:16 PM
  699. Application Name :Npgsql
  700. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  701. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  702. --- End of stack trace from previous location where exception was thrown ---
  703. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  704. --- End of stack trace from previous location where exception was thrown ---
  705. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  706. --- End of stack trace from previous location where exception was thrown ---
  707. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  708. at Npgsql.NpgsqlDataReader.NextResult()
  709. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  710. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  711. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  712. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  713. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  714. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  715. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  716. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  717. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  718. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  719. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  720. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  721. ------------------------Error Log End----------------------------
  722. ------------------------Error Log start----------------------------
  723. Date:-28-Nov-24 1:11:21 PM
  724. Application Name :Npgsql
  725. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  726. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  727. --- End of stack trace from previous location where exception was thrown ---
  728. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  729. --- End of stack trace from previous location where exception was thrown ---
  730. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  731. --- End of stack trace from previous location where exception was thrown ---
  732. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  733. at Npgsql.NpgsqlDataReader.NextResult()
  734. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  735. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  736. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  737. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  738. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  739. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  740. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  741. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  742. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  743. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  744. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  745. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  746. ------------------------Error Log End----------------------------
  747. ------------------------Error Log start----------------------------
  748. Date:-28-Nov-24 1:12:56 PM
  749. Application Name :Npgsql
  750. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  751. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  752. --- End of stack trace from previous location where exception was thrown ---
  753. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  754. --- End of stack trace from previous location where exception was thrown ---
  755. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  756. --- End of stack trace from previous location where exception was thrown ---
  757. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  758. at Npgsql.NpgsqlDataReader.NextResult()
  759. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  760. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  761. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  762. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  763. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  764. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  765. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  766. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  767. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  768. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  769. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  770. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  771. ------------------------Error Log End----------------------------
  772. ------------------------Error Log start----------------------------
  773. Date:-28-Nov-24 1:15:28 PM
  774. Application Name :Npgsql
  775. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  776. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  777. --- End of stack trace from previous location where exception was thrown ---
  778. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  779. --- End of stack trace from previous location where exception was thrown ---
  780. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  781. --- End of stack trace from previous location where exception was thrown ---
  782. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  783. at Npgsql.NpgsqlDataReader.NextResult()
  784. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  785. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  786. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  787. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  788. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  789. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  790. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  791. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  792. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  793. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  794. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  795. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  796. ------------------------Error Log End----------------------------
  797. ------------------------Error Log start----------------------------
  798. Date:-28-Nov-24 1:22:08 PM
  799. Application Name :Npgsql
  800. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  801. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  802. --- End of stack trace from previous location where exception was thrown ---
  803. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  804. --- End of stack trace from previous location where exception was thrown ---
  805. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  806. --- End of stack trace from previous location where exception was thrown ---
  807. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  808. at Npgsql.NpgsqlDataReader.NextResult()
  809. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  810. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  811. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  812. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  813. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  814. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  815. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  816. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  817. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  818. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  819. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  820. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  821. ------------------------Error Log End----------------------------
  822. ------------------------Error Log start----------------------------
  823. Date:-28-Nov-24 1:33:03 PM
  824. Application Name :Npgsql
  825. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  826. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  827. --- End of stack trace from previous location where exception was thrown ---
  828. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  829. --- End of stack trace from previous location where exception was thrown ---
  830. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  831. --- End of stack trace from previous location where exception was thrown ---
  832. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  833. at Npgsql.NpgsqlDataReader.NextResult()
  834. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  835. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  836. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  837. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  838. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  839. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  840. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  841. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  842. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  843. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  844. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  845. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  846. ------------------------Error Log End----------------------------
  847. ------------------------Error Log start----------------------------
  848. Date:-28-Nov-24 1:48:04 PM
  849. Application Name :Npgsql
  850. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  851. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  852. --- End of stack trace from previous location where exception was thrown ---
  853. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  854. --- End of stack trace from previous location where exception was thrown ---
  855. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  856. --- End of stack trace from previous location where exception was thrown ---
  857. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  858. at Npgsql.NpgsqlDataReader.NextResult()
  859. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  860. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  861. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  862. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  863. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  864. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  865. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  866. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  867. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  868. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  869. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  870. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  871. ------------------------Error Log End----------------------------
  872. ------------------------Error Log start----------------------------
  873. Date:-28-Nov-24 3:13:21 PM
  874. Application Name :Npgsql
  875. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  876. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  877. --- End of stack trace from previous location where exception was thrown ---
  878. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  879. --- End of stack trace from previous location where exception was thrown ---
  880. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  881. --- End of stack trace from previous location where exception was thrown ---
  882. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  883. at Npgsql.NpgsqlDataReader.NextResult()
  884. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  885. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  886. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  887. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  888. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  889. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  890. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  891. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  892. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  893. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  894. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  895. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  896. ------------------------Error Log End----------------------------
  897. ------------------------Error Log start----------------------------
  898. Date:-28-Nov-24 3:21:21 PM
  899. Application Name :Npgsql
  900. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  901. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  902. --- End of stack trace from previous location where exception was thrown ---
  903. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  904. --- End of stack trace from previous location where exception was thrown ---
  905. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  906. --- End of stack trace from previous location where exception was thrown ---
  907. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  908. at Npgsql.NpgsqlDataReader.NextResult()
  909. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  910. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  911. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  912. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  913. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  914. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  915. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  916. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  917. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  918. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  919. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  920. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  921. ------------------------Error Log End----------------------------
  922. ------------------------Error Log start----------------------------
  923. Date:-28-Nov-24 3:21:27 PM
  924. Application Name :Npgsql
  925. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  926. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  927. --- End of stack trace from previous location where exception was thrown ---
  928. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  929. --- End of stack trace from previous location where exception was thrown ---
  930. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  931. --- End of stack trace from previous location where exception was thrown ---
  932. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  933. at Npgsql.NpgsqlDataReader.NextResult()
  934. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  935. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  936. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  937. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  938. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  939. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  940. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  941. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  942. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  943. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  944. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  945. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  946. ------------------------Error Log End----------------------------
  947. ------------------------Error Log start----------------------------
  948. Date:-28-Nov-24 3:22:33 PM
  949. Application Name :Npgsql
  950. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  951. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  952. --- End of stack trace from previous location where exception was thrown ---
  953. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  954. --- End of stack trace from previous location where exception was thrown ---
  955. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  956. --- End of stack trace from previous location where exception was thrown ---
  957. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  958. at Npgsql.NpgsqlDataReader.NextResult()
  959. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  960. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  961. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  962. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  963. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  964. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  965. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  966. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  967. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  968. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  969. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  970. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  971. ------------------------Error Log End----------------------------
  972. ------------------------Error Log start----------------------------
  973. Date:-28-Nov-24 3:28:54 PM
  974. Application Name :Npgsql
  975. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  976. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  977. --- End of stack trace from previous location where exception was thrown ---
  978. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  979. --- End of stack trace from previous location where exception was thrown ---
  980. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  981. --- End of stack trace from previous location where exception was thrown ---
  982. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  983. at Npgsql.NpgsqlDataReader.NextResult()
  984. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  985. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  986. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  987. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  988. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  989. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  990. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  991. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  992. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  993. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  994. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  995. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  996. ------------------------Error Log End----------------------------
  997. ------------------------Error Log start----------------------------
  998. Date:-28-Nov-24 8:21:26 PM
  999. Application Name :Npgsql
  1000. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1001. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1002. --- End of stack trace from previous location where exception was thrown ---
  1003. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1004. --- End of stack trace from previous location where exception was thrown ---
  1005. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1006. --- End of stack trace from previous location where exception was thrown ---
  1007. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1008. at Npgsql.NpgsqlDataReader.NextResult()
  1009. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1010. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1011. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1012. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1013. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1014. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1015. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1016. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1017. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1018. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  1019. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1020. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1021. ------------------------Error Log End----------------------------
  1022. ------------------------Error Log start----------------------------
  1023. Date:-29-Nov-24 11:52:02 AM
  1024. Application Name :Npgsql
  1025. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1026. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1027. --- End of stack trace from previous location where exception was thrown ---
  1028. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1029. --- End of stack trace from previous location where exception was thrown ---
  1030. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1031. --- End of stack trace from previous location where exception was thrown ---
  1032. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1033. at Npgsql.NpgsqlDataReader.NextResult()
  1034. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1035. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1036. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1037. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1038. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1039. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1040. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1041. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1042. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1043. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\App_Data\CommonRepository.cs:line 158
  1044. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1045. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1046. ------------------------Error Log End----------------------------
  1047. ------------------------Error Log start----------------------------
  1048. Date:-25-Dec-24 5:22:53 PM
  1049. Application Name :Npgsql
  1050. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1051. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1052. --- End of stack trace from previous location where exception was thrown ---
  1053. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1054. --- End of stack trace from previous location where exception was thrown ---
  1055. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1056. --- End of stack trace from previous location where exception was thrown ---
  1057. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1058. at Npgsql.NpgsqlDataReader.NextResult()
  1059. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1060. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1061. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1062. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1063. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1064. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1065. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1066. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1067. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1068. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1069. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1070. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1071. ------------------------Error Log End----------------------------
  1072. ------------------------Error Log start----------------------------
  1073. Date:-03-Jan-25 12:11:51 PM
  1074. Application Name :Npgsql
  1075. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1076. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1077. --- End of stack trace from previous location where exception was thrown ---
  1078. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1079. --- End of stack trace from previous location where exception was thrown ---
  1080. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1081. --- End of stack trace from previous location where exception was thrown ---
  1082. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1083. at Npgsql.NpgsqlDataReader.NextResult()
  1084. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1085. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1086. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1087. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1088. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1089. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1090. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1091. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1092. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1093. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1094. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1095. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1096. ------------------------Error Log End----------------------------
  1097. ------------------------Error Log start----------------------------
  1098. Date:-08-Jan-25 4:47:31 PM
  1099. Application Name :Npgsql
  1100. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1101. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1102. --- End of stack trace from previous location where exception was thrown ---
  1103. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1104. --- End of stack trace from previous location where exception was thrown ---
  1105. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1106. --- End of stack trace from previous location where exception was thrown ---
  1107. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1108. at Npgsql.NpgsqlDataReader.NextResult()
  1109. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1110. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1111. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1112. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1113. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1114. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1115. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1116. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1117. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1118. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1119. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1120. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1121. ------------------------Error Log End----------------------------
  1122. ------------------------Error Log start----------------------------
  1123. Date:-08-Jan-25 5:15:34 PM
  1124. Application Name :Npgsql
  1125. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1126. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1127. --- End of stack trace from previous location where exception was thrown ---
  1128. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1129. --- End of stack trace from previous location where exception was thrown ---
  1130. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1131. --- End of stack trace from previous location where exception was thrown ---
  1132. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1133. at Npgsql.NpgsqlDataReader.NextResult()
  1134. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1135. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1136. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1137. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1138. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1139. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1140. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1141. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1142. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1143. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1144. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1145. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1146. ------------------------Error Log End----------------------------
  1147. ------------------------Error Log start----------------------------
  1148. Date:-25-Jan-25 3:56:48 PM
  1149. Application Name :Npgsql
  1150. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1151. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1152. --- End of stack trace from previous location where exception was thrown ---
  1153. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1154. --- End of stack trace from previous location where exception was thrown ---
  1155. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1156. --- End of stack trace from previous location where exception was thrown ---
  1157. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1158. at Npgsql.NpgsqlDataReader.NextResult()
  1159. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1160. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1161. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1162. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1163. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1164. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1165. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1166. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1167. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1168. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1169. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1170. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1171. ------------------------Error Log End----------------------------
  1172. ------------------------Error Log start----------------------------
  1173. Date:-25-Jan-25 4:05:44 PM
  1174. Application Name :Npgsql
  1175. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1176. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1177. --- End of stack trace from previous location where exception was thrown ---
  1178. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1179. --- End of stack trace from previous location where exception was thrown ---
  1180. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1181. --- End of stack trace from previous location where exception was thrown ---
  1182. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1183. at Npgsql.NpgsqlDataReader.NextResult()
  1184. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1185. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1186. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1187. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1188. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1189. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1190. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1191. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1192. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1193. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1194. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1195. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1196. ------------------------Error Log End----------------------------
  1197. ------------------------Error Log start----------------------------
  1198. Date:-27-Jan-25 3:24:27 PM
  1199. Application Name :Npgsql
  1200. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1201. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1202. --- End of stack trace from previous location where exception was thrown ---
  1203. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1204. --- End of stack trace from previous location where exception was thrown ---
  1205. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1206. --- End of stack trace from previous location where exception was thrown ---
  1207. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1208. at Npgsql.NpgsqlDataReader.NextResult()
  1209. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1210. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1211. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1212. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1213. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1214. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1215. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1216. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1217. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1218. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1219. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1220. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1221. ------------------------Error Log End----------------------------
  1222. ------------------------Error Log start----------------------------
  1223. Date:-30-Jan-25 11:35:47 AM
  1224. Application Name :Npgsql
  1225. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1226. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1227. --- End of stack trace from previous location where exception was thrown ---
  1228. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1229. --- End of stack trace from previous location where exception was thrown ---
  1230. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1231. --- End of stack trace from previous location where exception was thrown ---
  1232. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1233. at Npgsql.NpgsqlDataReader.NextResult()
  1234. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1235. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1236. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1237. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1238. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1239. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1240. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1241. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1242. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1243. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1244. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1245. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1246. ------------------------Error Log End----------------------------
  1247. ------------------------Error Log start----------------------------
  1248. Date:-30-Jan-25 11:40:24 AM
  1249. Application Name :Npgsql
  1250. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1251. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1252. --- End of stack trace from previous location where exception was thrown ---
  1253. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1254. --- End of stack trace from previous location where exception was thrown ---
  1255. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1256. --- End of stack trace from previous location where exception was thrown ---
  1257. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1258. at Npgsql.NpgsqlDataReader.NextResult()
  1259. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1260. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1261. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1262. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1263. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1264. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1265. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1266. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1267. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1268. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1269. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1270. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1271. ------------------------Error Log End----------------------------
  1272. ------------------------Error Log start----------------------------
  1273. Date:-30-Jan-25 11:45:41 AM
  1274. Application Name :Npgsql
  1275. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1276. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1277. --- End of stack trace from previous location where exception was thrown ---
  1278. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1279. --- End of stack trace from previous location where exception was thrown ---
  1280. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1281. --- End of stack trace from previous location where exception was thrown ---
  1282. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1283. at Npgsql.NpgsqlDataReader.NextResult()
  1284. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1285. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1286. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1287. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1288. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1289. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1290. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1291. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1292. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1293. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1294. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1295. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1296. ------------------------Error Log End----------------------------
  1297. ------------------------Error Log start----------------------------
  1298. Date:-30-Jan-25 11:48:07 AM
  1299. Application Name :Npgsql
  1300. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1301. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1302. --- End of stack trace from previous location where exception was thrown ---
  1303. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1304. --- End of stack trace from previous location where exception was thrown ---
  1305. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1306. --- End of stack trace from previous location where exception was thrown ---
  1307. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1308. at Npgsql.NpgsqlDataReader.NextResult()
  1309. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1310. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1311. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1312. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1313. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1314. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1315. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1316. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1317. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1318. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1319. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1320. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1321. ------------------------Error Log End----------------------------
  1322. ------------------------Error Log start----------------------------
  1323. Date:-30-Jan-25 11:54:18 AM
  1324. Application Name :Npgsql
  1325. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1326. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1327. --- End of stack trace from previous location where exception was thrown ---
  1328. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1329. --- End of stack trace from previous location where exception was thrown ---
  1330. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1331. --- End of stack trace from previous location where exception was thrown ---
  1332. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1333. at Npgsql.NpgsqlDataReader.NextResult()
  1334. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1335. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1336. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1337. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1338. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1339. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1340. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1341. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1342. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1343. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1344. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1345. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1346. ------------------------Error Log End----------------------------
  1347. ------------------------Error Log start----------------------------
  1348. Date:-30-Jan-25 11:54:29 AM
  1349. Application Name :Npgsql
  1350. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1351. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1352. --- End of stack trace from previous location where exception was thrown ---
  1353. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1354. --- End of stack trace from previous location where exception was thrown ---
  1355. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1356. --- End of stack trace from previous location where exception was thrown ---
  1357. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1358. at Npgsql.NpgsqlDataReader.NextResult()
  1359. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1360. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1361. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1362. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1363. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1364. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1365. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1366. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1367. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1368. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1369. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1370. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1371. ------------------------Error Log End----------------------------
  1372. ------------------------Error Log start----------------------------
  1373. Date:-30-Jan-25 4:27:33 PM
  1374. Application Name :Npgsql
  1375. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1376. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1377. --- End of stack trace from previous location where exception was thrown ---
  1378. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1379. --- End of stack trace from previous location where exception was thrown ---
  1380. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1381. --- End of stack trace from previous location where exception was thrown ---
  1382. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1383. at Npgsql.NpgsqlDataReader.NextResult()
  1384. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1385. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1386. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1387. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1388. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1389. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1390. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1391. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1392. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1393. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1394. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1395. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1396. ------------------------Error Log End----------------------------
  1397. ------------------------Error Log start----------------------------
  1398. Date:-03-Feb-25 11:29:48 AM
  1399. Application Name :Npgsql
  1400. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1401. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1402. --- End of stack trace from previous location where exception was thrown ---
  1403. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1404. --- End of stack trace from previous location where exception was thrown ---
  1405. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1406. --- End of stack trace from previous location where exception was thrown ---
  1407. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1408. at Npgsql.NpgsqlDataReader.NextResult()
  1409. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1410. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1411. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1412. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1413. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1414. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1415. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1416. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1417. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1418. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1419. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1420. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1421. ------------------------Error Log End----------------------------
  1422. ------------------------Error Log start----------------------------
  1423. Date:-03-Feb-25 12:10:19 PM
  1424. Application Name :Npgsql
  1425. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1426. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1427. --- End of stack trace from previous location where exception was thrown ---
  1428. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1429. --- End of stack trace from previous location where exception was thrown ---
  1430. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1431. --- End of stack trace from previous location where exception was thrown ---
  1432. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1433. at Npgsql.NpgsqlDataReader.NextResult()
  1434. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1435. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1436. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1437. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1438. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1439. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1440. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1441. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1442. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1443. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1444. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1445. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1446. ------------------------Error Log End----------------------------
  1447. ------------------------Error Log start----------------------------
  1448. Date:-03-Feb-25 12:14:33 PM
  1449. Application Name :Npgsql
  1450. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1451. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1452. --- End of stack trace from previous location where exception was thrown ---
  1453. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1454. --- End of stack trace from previous location where exception was thrown ---
  1455. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1456. --- End of stack trace from previous location where exception was thrown ---
  1457. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1458. at Npgsql.NpgsqlDataReader.NextResult()
  1459. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1460. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1461. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1462. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1463. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1464. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1465. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1466. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1467. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1468. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1469. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1470. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 55
  1471. ------------------------Error Log End----------------------------
  1472. ------------------------Error Log start----------------------------
  1473. Date:-03-Feb-25 12:16:19 PM
  1474. Application Name :Npgsql
  1475. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1476. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1477. --- End of stack trace from previous location where exception was thrown ---
  1478. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1479. --- End of stack trace from previous location where exception was thrown ---
  1480. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1481. --- End of stack trace from previous location where exception was thrown ---
  1482. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1483. at Npgsql.NpgsqlDataReader.NextResult()
  1484. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1485. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1486. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1487. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1488. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1489. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1490. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1491. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1492. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1493. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1494. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1495. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1496. ------------------------Error Log End----------------------------
  1497. ------------------------Error Log start----------------------------
  1498. Date:-03-Feb-25 12:19:38 PM
  1499. Application Name :Npgsql
  1500. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1501. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1502. --- End of stack trace from previous location where exception was thrown ---
  1503. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1504. --- End of stack trace from previous location where exception was thrown ---
  1505. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1506. --- End of stack trace from previous location where exception was thrown ---
  1507. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1508. at Npgsql.NpgsqlDataReader.NextResult()
  1509. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1510. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1511. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1512. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1513. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1514. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1515. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1516. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1517. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1518. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1519. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1520. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1521. ------------------------Error Log End----------------------------
  1522. ------------------------Error Log start----------------------------
  1523. Date:-03-Feb-25 12:24:34 PM
  1524. Application Name :Npgsql
  1525. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1526. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1527. --- End of stack trace from previous location where exception was thrown ---
  1528. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1529. --- End of stack trace from previous location where exception was thrown ---
  1530. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1531. --- End of stack trace from previous location where exception was thrown ---
  1532. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1533. at Npgsql.NpgsqlDataReader.NextResult()
  1534. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1535. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1536. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1537. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1538. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1539. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1540. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1541. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1542. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1543. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1544. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1545. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1546. ------------------------Error Log End----------------------------
  1547. ------------------------Error Log start----------------------------
  1548. Date:-03-Feb-25 12:27:50 PM
  1549. Application Name :Npgsql
  1550. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1551. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1552. --- End of stack trace from previous location where exception was thrown ---
  1553. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1554. --- End of stack trace from previous location where exception was thrown ---
  1555. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1556. --- End of stack trace from previous location where exception was thrown ---
  1557. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1558. at Npgsql.NpgsqlDataReader.NextResult()
  1559. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1560. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1561. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1562. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1563. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1564. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1565. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1566. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1567. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1568. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1569. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1570. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1571. ------------------------Error Log End----------------------------
  1572. ------------------------Error Log start----------------------------
  1573. Date:-03-Feb-25 12:45:17 PM
  1574. Application Name :Npgsql
  1575. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1576. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1577. --- End of stack trace from previous location where exception was thrown ---
  1578. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1579. --- End of stack trace from previous location where exception was thrown ---
  1580. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1581. --- End of stack trace from previous location where exception was thrown ---
  1582. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1583. at Npgsql.NpgsqlDataReader.NextResult()
  1584. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1585. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1586. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1587. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1588. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1589. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1590. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1591. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1592. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1593. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1594. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1595. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1596. ------------------------Error Log End----------------------------
  1597. ------------------------Error Log start----------------------------
  1598. Date:-03-Feb-25 12:52:37 PM
  1599. Application Name :Npgsql
  1600. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1601. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1602. --- End of stack trace from previous location where exception was thrown ---
  1603. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1604. --- End of stack trace from previous location where exception was thrown ---
  1605. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1606. --- End of stack trace from previous location where exception was thrown ---
  1607. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1608. at Npgsql.NpgsqlDataReader.NextResult()
  1609. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1610. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1611. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1612. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1613. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1614. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1615. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1616. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1617. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1618. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1619. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1620. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1621. ------------------------Error Log End----------------------------
  1622. ------------------------Error Log start----------------------------
  1623. Date:-03-Feb-25 12:52:40 PM
  1624. Application Name :Npgsql
  1625. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1626. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1627. --- End of stack trace from previous location where exception was thrown ---
  1628. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1629. --- End of stack trace from previous location where exception was thrown ---
  1630. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1631. --- End of stack trace from previous location where exception was thrown ---
  1632. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1633. at Npgsql.NpgsqlDataReader.NextResult()
  1634. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1635. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1636. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1637. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1638. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1639. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1640. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1641. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1642. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1643. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1644. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1645. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1646. ------------------------Error Log End----------------------------
  1647. ------------------------Error Log start----------------------------
  1648. Date:-05-Feb-25 11:39:05 AM
  1649. Application Name :Npgsql
  1650. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1651. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1652. --- End of stack trace from previous location where exception was thrown ---
  1653. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1654. --- End of stack trace from previous location where exception was thrown ---
  1655. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1656. --- End of stack trace from previous location where exception was thrown ---
  1657. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1658. at Npgsql.NpgsqlDataReader.NextResult()
  1659. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1660. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1661. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1662. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1663. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1664. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1665. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1666. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1667. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1668. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1669. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1670. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1671. ------------------------Error Log End----------------------------
  1672. ------------------------Error Log start----------------------------
  1673. Date:-05-Feb-25 11:39:33 AM
  1674. Application Name :Npgsql
  1675. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1676. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1677. --- End of stack trace from previous location where exception was thrown ---
  1678. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1679. --- End of stack trace from previous location where exception was thrown ---
  1680. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1681. --- End of stack trace from previous location where exception was thrown ---
  1682. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1683. at Npgsql.NpgsqlDataReader.NextResult()
  1684. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1685. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1686. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1687. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1688. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1689. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1690. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1691. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1692. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1693. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1694. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1695. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1696. ------------------------Error Log End----------------------------
  1697. ------------------------Error Log start----------------------------
  1698. Date:-05-Feb-25 11:42:45 AM
  1699. Application Name :Npgsql
  1700. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1701. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1702. --- End of stack trace from previous location where exception was thrown ---
  1703. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1704. --- End of stack trace from previous location where exception was thrown ---
  1705. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1706. --- End of stack trace from previous location where exception was thrown ---
  1707. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1708. at Npgsql.NpgsqlDataReader.NextResult()
  1709. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1710. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1711. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1712. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1713. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1714. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1715. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1716. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1717. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1718. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1719. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1720. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1721. ------------------------Error Log End----------------------------
  1722. ------------------------Error Log start----------------------------
  1723. Date:-05-Feb-25 12:14:38 PM
  1724. Application Name :Npgsql
  1725. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1726. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1727. --- End of stack trace from previous location where exception was thrown ---
  1728. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1729. --- End of stack trace from previous location where exception was thrown ---
  1730. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1731. --- End of stack trace from previous location where exception was thrown ---
  1732. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1733. at Npgsql.NpgsqlDataReader.NextResult()
  1734. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1735. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1736. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  1737. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1738. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1739. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1740. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1741. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1742. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1743. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1744. ------------------------Error Log End----------------------------
  1745. ------------------------Error Log start----------------------------
  1746. Date:-05-Feb-25 12:17:18 PM
  1747. Application Name :Npgsql
  1748. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1749. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1750. --- End of stack trace from previous location where exception was thrown ---
  1751. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1752. --- End of stack trace from previous location where exception was thrown ---
  1753. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1754. --- End of stack trace from previous location where exception was thrown ---
  1755. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1756. at Npgsql.NpgsqlDataReader.NextResult()
  1757. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1758. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1759. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  1760. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1761. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1762. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1763. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1764. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1765. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1766. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 54
  1767. ------------------------Error Log End----------------------------
  1768. ------------------------Error Log start----------------------------
  1769. Date:-06-Feb-25 5:49:00 PM
  1770. Application Name :Npgsql
  1771. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1772. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1773. --- End of stack trace from previous location where exception was thrown ---
  1774. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1775. --- End of stack trace from previous location where exception was thrown ---
  1776. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1777. --- End of stack trace from previous location where exception was thrown ---
  1778. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1779. at Npgsql.NpgsqlDataReader.NextResult()
  1780. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1781. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1782. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1783. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1784. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1785. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1786. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1787. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1788. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1789. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1790. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1791. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1792. ------------------------Error Log End----------------------------
  1793. ------------------------Error Log start----------------------------
  1794. Date:-06-Feb-25 6:03:10 PM
  1795. Application Name :Npgsql
  1796. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1797. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1798. --- End of stack trace from previous location where exception was thrown ---
  1799. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1800. --- End of stack trace from previous location where exception was thrown ---
  1801. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1802. --- End of stack trace from previous location where exception was thrown ---
  1803. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1804. at Npgsql.NpgsqlDataReader.NextResult()
  1805. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1806. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1807. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  1808. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1809. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1810. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1811. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1812. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1813. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1814. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1815. ------------------------Error Log End----------------------------
  1816. ------------------------Error Log start----------------------------
  1817. Date:-06-Feb-25 6:21:44 PM
  1818. Application Name :Npgsql
  1819. Error Message :Exception while connecting
  1820. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1821. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1822. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1823. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1824. --- End of stack trace from previous location where exception was thrown ---
  1825. at Npgsql.NpgsqlConnection.Open()
  1826. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  1827. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  1828. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  1829. ------------------------Error Log End----------------------------
  1830. ------------------------Error Log start----------------------------
  1831. Date:-06-Feb-25 6:22:52 PM
  1832. Application Name :Npgsql
  1833. Error Message :Exception while connecting
  1834. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1835. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1836. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1837. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1838. --- End of stack trace from previous location where exception was thrown ---
  1839. at Npgsql.NpgsqlConnection.Open()
  1840. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 154
  1841. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1842. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1843. ------------------------Error Log End----------------------------
  1844. ------------------------Error Log start----------------------------
  1845. Date:-06-Feb-25 6:23:17 PM
  1846. Application Name :Npgsql
  1847. Error Message :Exception while connecting
  1848. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1849. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1850. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1851. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1852. --- End of stack trace from previous location where exception was thrown ---
  1853. at Npgsql.NpgsqlConnection.Open()
  1854. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 154
  1855. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1856. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1857. ------------------------Error Log End----------------------------
  1858. ------------------------Error Log start----------------------------
  1859. Date:-06-Feb-25 6:24:44 PM
  1860. Application Name :Npgsql
  1861. Error Message :Exception while connecting
  1862. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1863. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1864. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1865. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1866. --- End of stack trace from previous location where exception was thrown ---
  1867. at Npgsql.NpgsqlConnection.Open()
  1868. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 154
  1869. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1870. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1871. ------------------------Error Log End----------------------------
  1872. ------------------------Error Log start----------------------------
  1873. Date:-06-Feb-25 6:31:20 PM
  1874. Application Name :Npgsql
  1875. Error Message :Exception while connecting
  1876. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1877. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1878. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1879. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1880. --- End of stack trace from previous location where exception was thrown ---
  1881. at Npgsql.NpgsqlConnection.Open()
  1882. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 154
  1883. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1884. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1885. ------------------------Error Log End----------------------------
  1886. ------------------------Error Log start----------------------------
  1887. Date:-06-Feb-25 6:33:48 PM
  1888. Application Name :Npgsql
  1889. Error Message :Exception while connecting
  1890. Method Name : at Npgsql.NpgsqlConnector.Connect(NpgsqlTimeout timeout)
  1891. at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1892. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  1893. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  1894. --- End of stack trace from previous location where exception was thrown ---
  1895. at Npgsql.NpgsqlConnection.Open()
  1896. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 154
  1897. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1898. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1899. ------------------------Error Log End----------------------------
  1900. ------------------------Error Log start----------------------------
  1901. Date:-07-Feb-25 11:44:08 AM
  1902. Application Name :Npgsql
  1903. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1904. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1905. --- End of stack trace from previous location where exception was thrown ---
  1906. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1907. --- End of stack trace from previous location where exception was thrown ---
  1908. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1909. --- End of stack trace from previous location where exception was thrown ---
  1910. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1911. at Npgsql.NpgsqlDataReader.NextResult()
  1912. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1913. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1914. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1915. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1916. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1917. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1918. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1919. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1920. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1921. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1922. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1923. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1924. ------------------------Error Log End----------------------------
  1925. ------------------------Error Log start----------------------------
  1926. Date:-07-Feb-25 11:48:41 AM
  1927. Application Name :Npgsql
  1928. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1929. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1930. --- End of stack trace from previous location where exception was thrown ---
  1931. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1932. --- End of stack trace from previous location where exception was thrown ---
  1933. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1934. --- End of stack trace from previous location where exception was thrown ---
  1935. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1936. at Npgsql.NpgsqlDataReader.NextResult()
  1937. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1938. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1939. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1940. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1941. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1942. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1943. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1944. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1945. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1946. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1947. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1948. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1949. ------------------------Error Log End----------------------------
  1950. ------------------------Error Log start----------------------------
  1951. Date:-07-Feb-25 11:50:50 AM
  1952. Application Name :Npgsql
  1953. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1954. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1955. --- End of stack trace from previous location where exception was thrown ---
  1956. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1957. --- End of stack trace from previous location where exception was thrown ---
  1958. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1959. --- End of stack trace from previous location where exception was thrown ---
  1960. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1961. at Npgsql.NpgsqlDataReader.NextResult()
  1962. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1963. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1964. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  1965. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  1966. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  1967. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1968. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1969. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1970. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1971. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1972. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1973. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1974. ------------------------Error Log End----------------------------
  1975. ------------------------Error Log start----------------------------
  1976. Date:-07-Feb-25 11:51:46 AM
  1977. Application Name :Npgsql
  1978. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  1979. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1980. --- End of stack trace from previous location where exception was thrown ---
  1981. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  1982. --- End of stack trace from previous location where exception was thrown ---
  1983. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  1984. --- End of stack trace from previous location where exception was thrown ---
  1985. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  1986. at Npgsql.NpgsqlDataReader.NextResult()
  1987. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  1988. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  1989. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  1990. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  1991. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  1992. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  1993. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  1994. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  1995. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  1996. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  1997. ------------------------Error Log End----------------------------
  1998. ------------------------Error Log start----------------------------
  1999. Date:-07-Feb-25 12:05:31 PM
  2000. Application Name :Npgsql
  2001. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2002. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2003. --- End of stack trace from previous location where exception was thrown ---
  2004. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2005. --- End of stack trace from previous location where exception was thrown ---
  2006. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2007. --- End of stack trace from previous location where exception was thrown ---
  2008. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2009. at Npgsql.NpgsqlDataReader.NextResult()
  2010. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2011. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2012. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2013. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2014. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2015. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2016. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2017. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2018. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2019. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2020. ------------------------Error Log End----------------------------
  2021. ------------------------Error Log start----------------------------
  2022. Date:-07-Feb-25 12:05:38 PM
  2023. Application Name :Npgsql
  2024. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2025. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2026. --- End of stack trace from previous location where exception was thrown ---
  2027. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2028. --- End of stack trace from previous location where exception was thrown ---
  2029. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2030. --- End of stack trace from previous location where exception was thrown ---
  2031. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2032. at Npgsql.NpgsqlDataReader.NextResult()
  2033. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2034. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2035. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2036. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2037. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2038. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2039. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2040. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2041. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2042. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2043. ------------------------Error Log End----------------------------
  2044. ------------------------Error Log start----------------------------
  2045. Date:-07-Feb-25 12:09:05 PM
  2046. Application Name :Npgsql
  2047. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2048. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2049. --- End of stack trace from previous location where exception was thrown ---
  2050. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2051. --- End of stack trace from previous location where exception was thrown ---
  2052. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2053. --- End of stack trace from previous location where exception was thrown ---
  2054. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2055. at Npgsql.NpgsqlDataReader.NextResult()
  2056. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2057. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2058. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2059. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2060. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2061. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2062. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2063. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2064. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2065. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2066. ------------------------Error Log End----------------------------
  2067. ------------------------Error Log start----------------------------
  2068. Date:-07-Feb-25 12:22:25 PM
  2069. Application Name :Npgsql
  2070. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2071. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2072. --- End of stack trace from previous location where exception was thrown ---
  2073. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2074. --- End of stack trace from previous location where exception was thrown ---
  2075. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2076. --- End of stack trace from previous location where exception was thrown ---
  2077. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2078. at Npgsql.NpgsqlDataReader.NextResult()
  2079. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2080. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2081. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2082. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2083. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2084. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2085. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2086. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2087. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2088. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2089. ------------------------Error Log End----------------------------
  2090. ------------------------Error Log start----------------------------
  2091. Date:-07-Feb-25 12:22:50 PM
  2092. Application Name :Npgsql
  2093. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2094. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2095. --- End of stack trace from previous location where exception was thrown ---
  2096. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2097. --- End of stack trace from previous location where exception was thrown ---
  2098. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2099. --- End of stack trace from previous location where exception was thrown ---
  2100. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2101. at Npgsql.NpgsqlDataReader.NextResult()
  2102. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2103. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2104. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2105. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2106. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2107. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2108. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2109. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2110. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2111. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2112. ------------------------Error Log End----------------------------
  2113. ------------------------Error Log start----------------------------
  2114. Date:-07-Feb-25 12:25:12 PM
  2115. Application Name :Npgsql
  2116. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2117. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2118. --- End of stack trace from previous location where exception was thrown ---
  2119. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2120. --- End of stack trace from previous location where exception was thrown ---
  2121. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2122. --- End of stack trace from previous location where exception was thrown ---
  2123. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2124. at Npgsql.NpgsqlDataReader.NextResult()
  2125. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2126. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2127. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2128. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2129. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2130. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2131. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2132. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2133. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2134. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2135. ------------------------Error Log End----------------------------
  2136. ------------------------Error Log start----------------------------
  2137. Date:-10-Feb-25 10:33:11 AM
  2138. Application Name :Npgsql
  2139. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2140. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2141. --- End of stack trace from previous location where exception was thrown ---
  2142. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2143. --- End of stack trace from previous location where exception was thrown ---
  2144. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2145. --- End of stack trace from previous location where exception was thrown ---
  2146. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2147. at Npgsql.NpgsqlDataReader.NextResult()
  2148. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2149. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2150. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2151. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2152. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2153. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2154. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2155. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2156. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2157. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2158. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2159. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2160. ------------------------Error Log End----------------------------
  2161. ------------------------Error Log start----------------------------
  2162. Date:-10-Feb-25 10:38:31 AM
  2163. Application Name :Npgsql
  2164. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2165. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2166. --- End of stack trace from previous location where exception was thrown ---
  2167. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2168. --- End of stack trace from previous location where exception was thrown ---
  2169. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2170. --- End of stack trace from previous location where exception was thrown ---
  2171. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2172. at Npgsql.NpgsqlDataReader.NextResult()
  2173. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2174. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2175. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2176. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2177. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2178. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2179. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2180. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2181. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2182. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2183. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2184. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2185. ------------------------Error Log End----------------------------
  2186. ------------------------Error Log start----------------------------
  2187. Date:-10-Feb-25 10:40:44 AM
  2188. Application Name :Npgsql
  2189. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2190. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2191. --- End of stack trace from previous location where exception was thrown ---
  2192. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2193. --- End of stack trace from previous location where exception was thrown ---
  2194. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2195. --- End of stack trace from previous location where exception was thrown ---
  2196. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2197. at Npgsql.NpgsqlDataReader.NextResult()
  2198. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2199. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2200. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2201. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2202. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2203. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2204. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2205. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2206. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2207. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2208. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2209. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2210. ------------------------Error Log End----------------------------
  2211. ------------------------Error Log start----------------------------
  2212. Date:-10-Feb-25 10:42:07 AM
  2213. Application Name :Npgsql
  2214. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2215. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2216. --- End of stack trace from previous location where exception was thrown ---
  2217. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2218. --- End of stack trace from previous location where exception was thrown ---
  2219. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2220. --- End of stack trace from previous location where exception was thrown ---
  2221. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2222. at Npgsql.NpgsqlDataReader.NextResult()
  2223. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2224. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2225. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2226. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2227. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2228. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2229. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2230. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2231. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2232. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2233. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2234. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2235. ------------------------Error Log End----------------------------
  2236. ------------------------Error Log start----------------------------
  2237. Date:-10-Feb-25 10:58:43 AM
  2238. Application Name :Npgsql
  2239. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2240. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2241. --- End of stack trace from previous location where exception was thrown ---
  2242. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2243. --- End of stack trace from previous location where exception was thrown ---
  2244. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2245. --- End of stack trace from previous location where exception was thrown ---
  2246. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2247. at Npgsql.NpgsqlDataReader.NextResult()
  2248. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2249. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2250. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2251. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2252. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2253. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2254. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2255. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2256. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2257. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2258. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2259. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2260. ------------------------Error Log End----------------------------
  2261. ------------------------Error Log start----------------------------
  2262. Date:-11-Feb-25 10:57:21 AM
  2263. Application Name :Npgsql
  2264. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2265. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2266. --- End of stack trace from previous location where exception was thrown ---
  2267. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2268. --- End of stack trace from previous location where exception was thrown ---
  2269. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2270. --- End of stack trace from previous location where exception was thrown ---
  2271. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2272. at Npgsql.NpgsqlDataReader.NextResult()
  2273. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2274. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2275. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2276. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2277. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2278. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2279. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2280. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2281. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2282. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2283. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2284. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2285. ------------------------Error Log End----------------------------
  2286. ------------------------Error Log start----------------------------
  2287. Date:-11-Feb-25 11:00:33 AM
  2288. Application Name :Npgsql
  2289. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2290. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2291. --- End of stack trace from previous location where exception was thrown ---
  2292. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2293. --- End of stack trace from previous location where exception was thrown ---
  2294. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2295. --- End of stack trace from previous location where exception was thrown ---
  2296. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2297. at Npgsql.NpgsqlDataReader.NextResult()
  2298. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2299. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2300. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2301. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2302. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2303. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2304. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2305. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2306. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2307. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2308. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2309. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2310. ------------------------Error Log End----------------------------
  2311. ------------------------Error Log start----------------------------
  2312. Date:-11-Feb-25 11:06:21 AM
  2313. Application Name :Npgsql
  2314. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2315. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2316. --- End of stack trace from previous location where exception was thrown ---
  2317. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2318. --- End of stack trace from previous location where exception was thrown ---
  2319. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2320. --- End of stack trace from previous location where exception was thrown ---
  2321. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2322. at Npgsql.NpgsqlDataReader.NextResult()
  2323. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2324. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2325. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2326. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2327. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2328. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2329. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2330. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2331. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2332. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2333. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2334. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2335. ------------------------Error Log End----------------------------
  2336. ------------------------Error Log start----------------------------
  2337. Date:-11-Feb-25 11:12:53 AM
  2338. Application Name :Npgsql
  2339. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2340. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2341. --- End of stack trace from previous location where exception was thrown ---
  2342. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2343. --- End of stack trace from previous location where exception was thrown ---
  2344. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2345. --- End of stack trace from previous location where exception was thrown ---
  2346. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2347. at Npgsql.NpgsqlDataReader.NextResult()
  2348. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2349. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2350. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2351. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2352. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2353. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2354. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2355. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2356. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2357. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2358. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2359. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2360. ------------------------Error Log End----------------------------
  2361. ------------------------Error Log start----------------------------
  2362. Date:-11-Feb-25 11:17:57 AM
  2363. Application Name :Npgsql
  2364. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2365. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2366. --- End of stack trace from previous location where exception was thrown ---
  2367. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2368. --- End of stack trace from previous location where exception was thrown ---
  2369. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2370. --- End of stack trace from previous location where exception was thrown ---
  2371. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2372. at Npgsql.NpgsqlDataReader.NextResult()
  2373. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2374. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2375. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2376. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2377. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2378. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2379. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2380. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2381. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2382. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2383. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2384. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2385. ------------------------Error Log End----------------------------
  2386. ------------------------Error Log start----------------------------
  2387. Date:-11-Feb-25 11:34:43 AM
  2388. Application Name :Npgsql
  2389. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2390. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2391. --- End of stack trace from previous location where exception was thrown ---
  2392. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2393. --- End of stack trace from previous location where exception was thrown ---
  2394. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2395. --- End of stack trace from previous location where exception was thrown ---
  2396. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2397. at Npgsql.NpgsqlDataReader.NextResult()
  2398. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2399. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2400. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2401. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2402. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2403. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2404. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2405. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2406. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2407. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2408. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2409. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2410. ------------------------Error Log End----------------------------
  2411. ------------------------Error Log start----------------------------
  2412. Date:-11-Feb-25 11:48:04 AM
  2413. Application Name :Npgsql
  2414. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2415. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2416. --- End of stack trace from previous location where exception was thrown ---
  2417. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2418. --- End of stack trace from previous location where exception was thrown ---
  2419. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2420. --- End of stack trace from previous location where exception was thrown ---
  2421. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2422. at Npgsql.NpgsqlDataReader.NextResult()
  2423. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2424. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2425. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2426. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2427. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2428. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2429. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2430. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2431. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2432. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2433. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2434. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2435. ------------------------Error Log End----------------------------
  2436. ------------------------Error Log start----------------------------
  2437. Date:-11-Feb-25 12:00:45 PM
  2438. Application Name :Npgsql
  2439. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2440. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2441. --- End of stack trace from previous location where exception was thrown ---
  2442. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2443. --- End of stack trace from previous location where exception was thrown ---
  2444. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2445. --- End of stack trace from previous location where exception was thrown ---
  2446. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2447. at Npgsql.NpgsqlDataReader.NextResult()
  2448. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2449. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2450. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2451. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2452. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2453. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2454. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2455. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2456. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2457. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2458. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2459. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2460. ------------------------Error Log End----------------------------
  2461. ------------------------Error Log start----------------------------
  2462. Date:-11-Feb-25 7:11:05 PM
  2463. Application Name :Npgsql
  2464. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2465. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2466. --- End of stack trace from previous location where exception was thrown ---
  2467. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2468. --- End of stack trace from previous location where exception was thrown ---
  2469. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2470. --- End of stack trace from previous location where exception was thrown ---
  2471. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2472. at Npgsql.NpgsqlDataReader.NextResult()
  2473. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2474. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2475. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2476. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2477. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2478. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2479. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2480. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2481. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2482. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2483. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2484. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2485. ------------------------Error Log End----------------------------
  2486. ------------------------Error Log start----------------------------
  2487. Date:-11-Feb-25 7:17:25 PM
  2488. Application Name :Npgsql
  2489. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2490. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2491. --- End of stack trace from previous location where exception was thrown ---
  2492. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2493. --- End of stack trace from previous location where exception was thrown ---
  2494. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2495. --- End of stack trace from previous location where exception was thrown ---
  2496. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2497. at Npgsql.NpgsqlDataReader.NextResult()
  2498. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2499. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2500. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2501. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2502. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2503. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2504. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2505. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2506. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2507. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2508. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2509. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2510. ------------------------Error Log End----------------------------
  2511. ------------------------Error Log start----------------------------
  2512. Date:-11-Feb-25 7:23:51 PM
  2513. Application Name :Npgsql
  2514. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2515. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2516. --- End of stack trace from previous location where exception was thrown ---
  2517. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2518. --- End of stack trace from previous location where exception was thrown ---
  2519. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2520. --- End of stack trace from previous location where exception was thrown ---
  2521. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2522. at Npgsql.NpgsqlDataReader.NextResult()
  2523. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2524. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2525. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2526. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2527. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2528. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2529. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2530. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2531. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2532. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2533. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2534. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2535. ------------------------Error Log End----------------------------
  2536. ------------------------Error Log start----------------------------
  2537. Date:-11-Feb-25 7:34:33 PM
  2538. Application Name :Npgsql
  2539. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2540. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2541. --- End of stack trace from previous location where exception was thrown ---
  2542. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2543. --- End of stack trace from previous location where exception was thrown ---
  2544. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2545. --- End of stack trace from previous location where exception was thrown ---
  2546. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2547. at Npgsql.NpgsqlDataReader.NextResult()
  2548. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2549. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2550. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2551. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2552. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2553. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2554. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2555. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2556. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2557. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2558. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2559. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2560. ------------------------Error Log End----------------------------
  2561. ------------------------Error Log start----------------------------
  2562. Date:-11-Feb-25 7:38:54 PM
  2563. Application Name :Npgsql
  2564. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2565. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2566. --- End of stack trace from previous location where exception was thrown ---
  2567. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2568. --- End of stack trace from previous location where exception was thrown ---
  2569. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2570. --- End of stack trace from previous location where exception was thrown ---
  2571. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2572. at Npgsql.NpgsqlDataReader.NextResult()
  2573. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2574. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2575. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2576. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2577. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2578. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2579. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2580. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2581. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2582. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2583. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2584. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2585. ------------------------Error Log End----------------------------
  2586. ------------------------Error Log start----------------------------
  2587. Date:-11-Feb-25 7:45:40 PM
  2588. Application Name :Npgsql
  2589. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2590. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2591. --- End of stack trace from previous location where exception was thrown ---
  2592. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2593. --- End of stack trace from previous location where exception was thrown ---
  2594. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2595. --- End of stack trace from previous location where exception was thrown ---
  2596. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2597. at Npgsql.NpgsqlDataReader.NextResult()
  2598. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2599. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2600. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2601. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2602. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2603. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2604. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2605. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2606. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2607. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2608. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2609. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2610. ------------------------Error Log End----------------------------
  2611. ------------------------Error Log start----------------------------
  2612. Date:-11-Feb-25 8:10:56 PM
  2613. Application Name :Npgsql
  2614. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2615. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2616. --- End of stack trace from previous location where exception was thrown ---
  2617. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2618. --- End of stack trace from previous location where exception was thrown ---
  2619. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2620. --- End of stack trace from previous location where exception was thrown ---
  2621. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2622. at Npgsql.NpgsqlDataReader.NextResult()
  2623. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2624. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2625. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2626. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2627. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2628. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2629. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2630. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2631. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2632. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2633. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2634. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2635. ------------------------Error Log End----------------------------
  2636. ------------------------Error Log start----------------------------
  2637. Date:-11-Feb-25 8:11:01 PM
  2638. Application Name :Npgsql
  2639. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2640. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2641. --- End of stack trace from previous location where exception was thrown ---
  2642. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2643. --- End of stack trace from previous location where exception was thrown ---
  2644. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2645. --- End of stack trace from previous location where exception was thrown ---
  2646. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2647. at Npgsql.NpgsqlDataReader.NextResult()
  2648. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2649. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2650. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2651. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2652. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2653. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2654. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2655. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2656. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2657. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2658. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2659. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2660. ------------------------Error Log End----------------------------
  2661. ------------------------Error Log start----------------------------
  2662. Date:-12-Feb-25 2:05:49 PM
  2663. Application Name :Npgsql
  2664. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2665. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2666. --- End of stack trace from previous location where exception was thrown ---
  2667. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2668. --- End of stack trace from previous location where exception was thrown ---
  2669. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2670. --- End of stack trace from previous location where exception was thrown ---
  2671. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2672. at Npgsql.NpgsqlDataReader.NextResult()
  2673. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2674. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2675. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2676. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2677. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2678. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2679. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2680. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2681. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2682. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\App_Data\CommonRepository.cs:line 158
  2683. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2684. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2685. ------------------------Error Log End----------------------------
  2686. ------------------------Error Log start----------------------------
  2687. Date:-24-Mar-25 1:37:36 PM
  2688. Application Name :Npgsql
  2689. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2690. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2691. --- End of stack trace from previous location where exception was thrown ---
  2692. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2693. --- End of stack trace from previous location where exception was thrown ---
  2694. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2695. --- End of stack trace from previous location where exception was thrown ---
  2696. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2697. at Npgsql.NpgsqlDataReader.NextResult()
  2698. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2699. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2700. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2701. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2702. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2703. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2704. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2705. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2706. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2707. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2708. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2709. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2710. ------------------------Error Log End----------------------------
  2711. ------------------------Error Log start----------------------------
  2712. Date:-03-Apr-25 3:59:12 PM
  2713. Application Name :Npgsql
  2714. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2715. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2716. --- End of stack trace from previous location where exception was thrown ---
  2717. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2718. --- End of stack trace from previous location where exception was thrown ---
  2719. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2720. --- End of stack trace from previous location where exception was thrown ---
  2721. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2722. at Npgsql.NpgsqlDataReader.NextResult()
  2723. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2724. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2725. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2726. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2727. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2728. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2729. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2730. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2731. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2732. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2733. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2734. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2735. ------------------------Error Log End----------------------------
  2736. ------------------------Error Log start----------------------------
  2737. Date:-03-Apr-25 4:03:20 PM
  2738. Application Name :Npgsql
  2739. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2740. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2741. --- End of stack trace from previous location where exception was thrown ---
  2742. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2743. --- End of stack trace from previous location where exception was thrown ---
  2744. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2745. --- End of stack trace from previous location where exception was thrown ---
  2746. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2747. at Npgsql.NpgsqlDataReader.NextResult()
  2748. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2749. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2750. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2751. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2752. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2753. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2754. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2755. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2756. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2757. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2758. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2759. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2760. ------------------------Error Log End----------------------------
  2761. ------------------------Error Log start----------------------------
  2762. Date:-22-Jul-25 3:40:35 PM
  2763. Application Name :Npgsql
  2764. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2765. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2766. --- End of stack trace from previous location where exception was thrown ---
  2767. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2768. --- End of stack trace from previous location where exception was thrown ---
  2769. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2770. --- End of stack trace from previous location where exception was thrown ---
  2771. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2772. at Npgsql.NpgsqlDataReader.NextResult()
  2773. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2774. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2775. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2776. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2777. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2778. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2779. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2780. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2781. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2782. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2783. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2784. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2785. ------------------------Error Log End----------------------------
  2786. ------------------------Error Log start----------------------------
  2787. Date:-23-Jul-25 11:24:19 AM
  2788. Application Name :Npgsql
  2789. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2790. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2791. --- End of stack trace from previous location where exception was thrown ---
  2792. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2793. --- End of stack trace from previous location where exception was thrown ---
  2794. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2795. --- End of stack trace from previous location where exception was thrown ---
  2796. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2797. at Npgsql.NpgsqlDataReader.NextResult()
  2798. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2799. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2800. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2801. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2802. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2803. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2804. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2805. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2806. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2807. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2808. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2809. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2810. ------------------------Error Log End----------------------------
  2811. ------------------------Error Log start----------------------------
  2812. Date:-23-Jul-25 12:03:01 PM
  2813. Application Name :Npgsql
  2814. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2815. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2816. --- End of stack trace from previous location where exception was thrown ---
  2817. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2818. --- End of stack trace from previous location where exception was thrown ---
  2819. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2820. --- End of stack trace from previous location where exception was thrown ---
  2821. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2822. at Npgsql.NpgsqlDataReader.NextResult()
  2823. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2824. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2825. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2826. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2827. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2828. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2829. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2830. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2831. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2832. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2833. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2834. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2835. ------------------------Error Log End----------------------------
  2836. ------------------------Error Log start----------------------------
  2837. Date:-23-Jul-25 2:20:33 PM
  2838. Application Name :Npgsql
  2839. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2840. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2841. --- End of stack trace from previous location where exception was thrown ---
  2842. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2843. --- End of stack trace from previous location where exception was thrown ---
  2844. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2845. --- End of stack trace from previous location where exception was thrown ---
  2846. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2847. at Npgsql.NpgsqlDataReader.NextResult()
  2848. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2849. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2850. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2851. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2852. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2853. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2854. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2855. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2856. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2857. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2858. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2859. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2860. ------------------------Error Log End----------------------------
  2861. ------------------------Error Log start----------------------------
  2862. Date:-23-Jul-25 2:23:50 PM
  2863. Application Name :Npgsql
  2864. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2865. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2866. --- End of stack trace from previous location where exception was thrown ---
  2867. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2868. --- End of stack trace from previous location where exception was thrown ---
  2869. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2870. --- End of stack trace from previous location where exception was thrown ---
  2871. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2872. at Npgsql.NpgsqlDataReader.NextResult()
  2873. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2874. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2875. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2876. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2877. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2878. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2879. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2880. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2881. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2882. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2883. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2884. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2885. ------------------------Error Log End----------------------------
  2886. ------------------------Error Log start----------------------------
  2887. Date:-23-Jul-25 3:53:44 PM
  2888. Application Name :Npgsql
  2889. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2890. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2891. --- End of stack trace from previous location where exception was thrown ---
  2892. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2893. --- End of stack trace from previous location where exception was thrown ---
  2894. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2895. --- End of stack trace from previous location where exception was thrown ---
  2896. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2897. at Npgsql.NpgsqlDataReader.NextResult()
  2898. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2899. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2900. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2901. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2902. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2903. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2904. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2905. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2906. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2907. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2908. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2909. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2910. ------------------------Error Log End----------------------------
  2911. ------------------------Error Log start----------------------------
  2912. Date:-23-Jul-25 4:11:29 PM
  2913. Application Name :Npgsql
  2914. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2915. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2916. --- End of stack trace from previous location where exception was thrown ---
  2917. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2918. --- End of stack trace from previous location where exception was thrown ---
  2919. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2920. --- End of stack trace from previous location where exception was thrown ---
  2921. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2922. at Npgsql.NpgsqlDataReader.NextResult()
  2923. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2924. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2925. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2926. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2927. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2928. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2929. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2930. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2931. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2932. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2933. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2934. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2935. ------------------------Error Log End----------------------------
  2936. ------------------------Error Log start----------------------------
  2937. Date:-23-Jul-25 4:16:14 PM
  2938. Application Name :Npgsql
  2939. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2940. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2941. --- End of stack trace from previous location where exception was thrown ---
  2942. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2943. --- End of stack trace from previous location where exception was thrown ---
  2944. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2945. --- End of stack trace from previous location where exception was thrown ---
  2946. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2947. at Npgsql.NpgsqlDataReader.NextResult()
  2948. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2949. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2950. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2951. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  2952. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  2953. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2954. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2955. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2956. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2957. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2958. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2959. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2960. ------------------------Error Log End----------------------------
  2961. ------------------------Error Log start----------------------------
  2962. Date:-23-Jul-25 4:31:03 PM
  2963. Application Name :Npgsql
  2964. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2965. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2966. --- End of stack trace from previous location where exception was thrown ---
  2967. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2968. --- End of stack trace from previous location where exception was thrown ---
  2969. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2970. --- End of stack trace from previous location where exception was thrown ---
  2971. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2972. at Npgsql.NpgsqlDataReader.NextResult()
  2973. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2974. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2975. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  2976. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  2977. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  2978. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  2979. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  2980. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  2981. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  2982. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 57
  2983. ------------------------Error Log End----------------------------
  2984. ------------------------Error Log start----------------------------
  2985. Date:-24-Jul-25 5:46:44 PM
  2986. Application Name :Npgsql
  2987. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  2988. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2989. --- End of stack trace from previous location where exception was thrown ---
  2990. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  2991. --- End of stack trace from previous location where exception was thrown ---
  2992. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  2993. --- End of stack trace from previous location where exception was thrown ---
  2994. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  2995. at Npgsql.NpgsqlDataReader.NextResult()
  2996. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  2997. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  2998. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  2999. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3000. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3001. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3002. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3003. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3004. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3005. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3006. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3007. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3008. ------------------------Error Log End----------------------------
  3009. ------------------------Error Log start----------------------------
  3010. Date:-25-Jul-25 11:44:24 AM
  3011. Application Name :Npgsql
  3012. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3013. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3014. --- End of stack trace from previous location where exception was thrown ---
  3015. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3016. --- End of stack trace from previous location where exception was thrown ---
  3017. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3018. --- End of stack trace from previous location where exception was thrown ---
  3019. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3020. at Npgsql.NpgsqlDataReader.NextResult()
  3021. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3022. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3023. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3024. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3025. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3026. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3027. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3028. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3029. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3030. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3031. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3032. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3033. ------------------------Error Log End----------------------------
  3034. ------------------------Error Log start----------------------------
  3035. Date:-28-Jul-25 4:14:38 PM
  3036. Application Name :Npgsql
  3037. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3038. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3039. --- End of stack trace from previous location where exception was thrown ---
  3040. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3041. --- End of stack trace from previous location where exception was thrown ---
  3042. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3043. --- End of stack trace from previous location where exception was thrown ---
  3044. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3045. at Npgsql.NpgsqlDataReader.NextResult()
  3046. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3047. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3048. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3049. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3050. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3051. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3052. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3053. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3054. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3055. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3056. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3057. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3058. ------------------------Error Log End----------------------------
  3059. ------------------------Error Log start----------------------------
  3060. Date:-29-Jul-25 10:56:31 AM
  3061. Application Name :Npgsql
  3062. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3063. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3064. --- End of stack trace from previous location where exception was thrown ---
  3065. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3066. --- End of stack trace from previous location where exception was thrown ---
  3067. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3068. --- End of stack trace from previous location where exception was thrown ---
  3069. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3070. at Npgsql.NpgsqlDataReader.NextResult()
  3071. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3072. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3073. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3074. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3075. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3076. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3077. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3078. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3079. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3080. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3081. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3082. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3083. ------------------------Error Log End----------------------------
  3084. ------------------------Error Log start----------------------------
  3085. Date:-29-Jul-25 10:57:17 AM
  3086. Application Name :Npgsql
  3087. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3088. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3089. --- End of stack trace from previous location where exception was thrown ---
  3090. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3091. --- End of stack trace from previous location where exception was thrown ---
  3092. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3093. --- End of stack trace from previous location where exception was thrown ---
  3094. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3095. at Npgsql.NpgsqlDataReader.NextResult()
  3096. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3097. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3098. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3099. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3100. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3101. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3102. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3103. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3104. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3105. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3106. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3107. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3108. ------------------------Error Log End----------------------------
  3109. ------------------------Error Log start----------------------------
  3110. Date:-9/13/2025 3:32:05 PM
  3111. Application Name :Npgsql
  3112. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3113. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3114. --- End of stack trace from previous location where exception was thrown ---
  3115. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3116. --- End of stack trace from previous location where exception was thrown ---
  3117. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3118. --- End of stack trace from previous location where exception was thrown ---
  3119. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3120. at Npgsql.NpgsqlDataReader.NextResult()
  3121. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3122. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3123. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3124. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3125. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3126. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3127. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3128. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3129. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3130. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3131. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3132. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3133. ------------------------Error Log End----------------------------
  3134. ------------------------Error Log start----------------------------
  3135. Date:-9/13/2025 3:32:10 PM
  3136. Application Name :Npgsql
  3137. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3138. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3139. --- End of stack trace from previous location where exception was thrown ---
  3140. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3141. --- End of stack trace from previous location where exception was thrown ---
  3142. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3143. --- End of stack trace from previous location where exception was thrown ---
  3144. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3145. at Npgsql.NpgsqlDataReader.NextResult()
  3146. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3147. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3148. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3149. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3150. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3151. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3152. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3153. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3154. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3155. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3156. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3157. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3158. ------------------------Error Log End----------------------------
  3159. ------------------------Error Log start----------------------------
  3160. Date:-9/13/2025 3:44:49 PM
  3161. Application Name :Npgsql
  3162. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3163. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3164. --- End of stack trace from previous location where exception was thrown ---
  3165. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3166. --- End of stack trace from previous location where exception was thrown ---
  3167. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3168. --- End of stack trace from previous location where exception was thrown ---
  3169. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3170. at Npgsql.NpgsqlDataReader.NextResult()
  3171. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3172. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3173. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3174. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3175. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3176. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3177. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3178. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3179. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3180. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3181. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3182. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3183. ------------------------Error Log End----------------------------
  3184. ------------------------Error Log start----------------------------
  3185. Date:-9/13/2025 3:59:05 PM
  3186. Application Name :Npgsql
  3187. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3188. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3189. --- End of stack trace from previous location where exception was thrown ---
  3190. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3191. --- End of stack trace from previous location where exception was thrown ---
  3192. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3193. --- End of stack trace from previous location where exception was thrown ---
  3194. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3195. at Npgsql.NpgsqlDataReader.NextResult()
  3196. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3197. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3198. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3199. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3200. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3201. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3202. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3203. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3204. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3205. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3206. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3207. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3208. ------------------------Error Log End----------------------------
  3209. ------------------------Error Log start----------------------------
  3210. Date:-9/13/2025 3:59:10 PM
  3211. Application Name :Npgsql
  3212. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3213. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3214. --- End of stack trace from previous location where exception was thrown ---
  3215. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3216. --- End of stack trace from previous location where exception was thrown ---
  3217. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3218. --- End of stack trace from previous location where exception was thrown ---
  3219. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3220. at Npgsql.NpgsqlDataReader.NextResult()
  3221. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3222. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3223. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3224. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3225. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3226. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3227. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3228. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3229. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3230. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3231. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3232. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3233. ------------------------Error Log End----------------------------
  3234. ------------------------Error Log start----------------------------
  3235. Date:-9/13/2025 4:03:33 PM
  3236. Application Name :Npgsql
  3237. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3238. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3239. --- End of stack trace from previous location where exception was thrown ---
  3240. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3241. --- End of stack trace from previous location where exception was thrown ---
  3242. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3243. --- End of stack trace from previous location where exception was thrown ---
  3244. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3245. at Npgsql.NpgsqlDataReader.NextResult()
  3246. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3247. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3248. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3249. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3250. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3251. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3252. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3253. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3254. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3255. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3256. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3257. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3258. ------------------------Error Log End----------------------------
  3259. ------------------------Error Log start----------------------------
  3260. Date:-9/13/2025 4:03:39 PM
  3261. Application Name :Npgsql
  3262. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3263. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3264. --- End of stack trace from previous location where exception was thrown ---
  3265. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3266. --- End of stack trace from previous location where exception was thrown ---
  3267. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3268. --- End of stack trace from previous location where exception was thrown ---
  3269. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3270. at Npgsql.NpgsqlDataReader.NextResult()
  3271. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3272. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3273. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3274. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3275. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3276. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3277. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3278. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3279. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3280. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3281. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3282. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3283. ------------------------Error Log End----------------------------
  3284. ------------------------Error Log start----------------------------
  3285. Date:-9/13/2025 4:24:42 PM
  3286. Application Name :Npgsql
  3287. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3288. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3289. --- End of stack trace from previous location where exception was thrown ---
  3290. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3291. --- End of stack trace from previous location where exception was thrown ---
  3292. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3293. --- End of stack trace from previous location where exception was thrown ---
  3294. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3295. at Npgsql.NpgsqlDataReader.NextResult()
  3296. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3297. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3298. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3299. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3300. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3301. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3302. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3303. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3304. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3305. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3306. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3307. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3308. ------------------------Error Log End----------------------------
  3309. ------------------------Error Log start----------------------------
  3310. Date:-9/13/2025 4:28:20 PM
  3311. Application Name :Npgsql
  3312. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3313. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3314. --- End of stack trace from previous location where exception was thrown ---
  3315. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3316. --- End of stack trace from previous location where exception was thrown ---
  3317. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3318. --- End of stack trace from previous location where exception was thrown ---
  3319. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3320. at Npgsql.NpgsqlDataReader.NextResult()
  3321. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3322. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3323. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3324. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3325. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3326. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3327. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3328. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3329. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3330. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3331. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3332. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3333. ------------------------Error Log End----------------------------
  3334. ------------------------Error Log start----------------------------
  3335. Date:-9/13/2025 4:43:54 PM
  3336. Application Name :Npgsql
  3337. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3338. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3339. --- End of stack trace from previous location where exception was thrown ---
  3340. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3341. --- End of stack trace from previous location where exception was thrown ---
  3342. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3343. --- End of stack trace from previous location where exception was thrown ---
  3344. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3345. at Npgsql.NpgsqlDataReader.NextResult()
  3346. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3347. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3348. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3349. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3350. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3351. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3352. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3353. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3354. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3355. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3356. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3357. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3358. ------------------------Error Log End----------------------------
  3359. ------------------------Error Log start----------------------------
  3360. Date:-9/13/2025 4:44:00 PM
  3361. Application Name :Npgsql
  3362. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3363. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3364. --- End of stack trace from previous location where exception was thrown ---
  3365. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3366. --- End of stack trace from previous location where exception was thrown ---
  3367. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3368. --- End of stack trace from previous location where exception was thrown ---
  3369. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3370. at Npgsql.NpgsqlDataReader.NextResult()
  3371. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3372. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3373. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3374. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3375. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3376. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3377. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3378. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3379. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3380. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3381. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3382. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3383. ------------------------Error Log End----------------------------
  3384. ------------------------Error Log start----------------------------
  3385. Date:-9/13/2025 4:53:43 PM
  3386. Application Name :Npgsql
  3387. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3388. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3389. --- End of stack trace from previous location where exception was thrown ---
  3390. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3391. --- End of stack trace from previous location where exception was thrown ---
  3392. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3393. --- End of stack trace from previous location where exception was thrown ---
  3394. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3395. at Npgsql.NpgsqlDataReader.NextResult()
  3396. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3397. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3398. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3399. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3400. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3401. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3402. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3403. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3404. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3405. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3406. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3407. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3408. ------------------------Error Log End----------------------------
  3409. ------------------------Error Log start----------------------------
  3410. Date:-9/13/2025 5:06:04 PM
  3411. Application Name :Npgsql
  3412. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3413. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3414. --- End of stack trace from previous location where exception was thrown ---
  3415. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3416. --- End of stack trace from previous location where exception was thrown ---
  3417. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3418. --- End of stack trace from previous location where exception was thrown ---
  3419. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3420. at Npgsql.NpgsqlDataReader.NextResult()
  3421. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3422. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3423. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3424. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3425. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3426. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3427. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3428. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3429. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3430. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3431. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3432. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3433. ------------------------Error Log End----------------------------
  3434. ------------------------Error Log start----------------------------
  3435. Date:-9/13/2025 5:06:14 PM
  3436. Application Name :Npgsql
  3437. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3438. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3439. --- End of stack trace from previous location where exception was thrown ---
  3440. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3441. --- End of stack trace from previous location where exception was thrown ---
  3442. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3443. --- End of stack trace from previous location where exception was thrown ---
  3444. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3445. at Npgsql.NpgsqlDataReader.NextResult()
  3446. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3447. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3448. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3449. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3450. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3451. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3452. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3453. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3454. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3455. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3456. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3457. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3458. ------------------------Error Log End----------------------------
  3459. ------------------------Error Log start----------------------------
  3460. Date:-9/16/2025 7:57:18 PM
  3461. Application Name :Npgsql
  3462. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3463. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3464. --- End of stack trace from previous location where exception was thrown ---
  3465. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3466. --- End of stack trace from previous location where exception was thrown ---
  3467. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3468. --- End of stack trace from previous location where exception was thrown ---
  3469. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3470. at Npgsql.NpgsqlDataReader.NextResult()
  3471. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3472. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3473. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3474. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3475. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3476. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3477. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3478. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3479. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3480. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3481. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3482. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3483. ------------------------Error Log End----------------------------
  3484. ------------------------Error Log start----------------------------
  3485. Date:-9/16/2025 7:57:21 PM
  3486. Application Name :Npgsql
  3487. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3488. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3489. --- End of stack trace from previous location where exception was thrown ---
  3490. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3491. --- End of stack trace from previous location where exception was thrown ---
  3492. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3493. --- End of stack trace from previous location where exception was thrown ---
  3494. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3495. at Npgsql.NpgsqlDataReader.NextResult()
  3496. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3497. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3498. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3499. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3500. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3501. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3502. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3503. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3504. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3505. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3506. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3507. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3508. ------------------------Error Log End----------------------------
  3509. ------------------------Error Log start----------------------------
  3510. Date:-10/13/2025 6:06:55 PM
  3511. Application Name :Npgsql
  3512. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3513. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3514. --- End of stack trace from previous location where exception was thrown ---
  3515. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3516. --- End of stack trace from previous location where exception was thrown ---
  3517. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3518. --- End of stack trace from previous location where exception was thrown ---
  3519. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3520. at Npgsql.NpgsqlDataReader.NextResult()
  3521. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3522. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3523. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3524. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3525. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3526. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3527. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3528. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3529. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3530. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3531. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3532. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3533. ------------------------Error Log End----------------------------
  3534. ------------------------Error Log start----------------------------
  3535. Date:-10/13/2025 6:07:05 PM
  3536. Application Name :Npgsql
  3537. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3538. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3539. --- End of stack trace from previous location where exception was thrown ---
  3540. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3541. --- End of stack trace from previous location where exception was thrown ---
  3542. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3543. --- End of stack trace from previous location where exception was thrown ---
  3544. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3545. at Npgsql.NpgsqlDataReader.NextResult()
  3546. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3547. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3548. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3549. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3550. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3551. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3552. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3553. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3554. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3555. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3556. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3557. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3558. ------------------------Error Log End----------------------------
  3559. ------------------------Error Log start----------------------------
  3560. Date:-10/14/2025 10:53:58 AM
  3561. Application Name :Npgsql
  3562. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3563. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3564. --- End of stack trace from previous location where exception was thrown ---
  3565. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3566. --- End of stack trace from previous location where exception was thrown ---
  3567. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3568. --- End of stack trace from previous location where exception was thrown ---
  3569. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3570. at Npgsql.NpgsqlDataReader.NextResult()
  3571. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3572. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3573. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3574. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3575. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3576. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3577. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3578. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3579. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3580. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3581. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3582. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3583. ------------------------Error Log End----------------------------
  3584. ------------------------Error Log start----------------------------
  3585. Date:-10/14/2025 10:54:05 AM
  3586. Application Name :Npgsql
  3587. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3588. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3589. --- End of stack trace from previous location where exception was thrown ---
  3590. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3591. --- End of stack trace from previous location where exception was thrown ---
  3592. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3593. --- End of stack trace from previous location where exception was thrown ---
  3594. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3595. at Npgsql.NpgsqlDataReader.NextResult()
  3596. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3597. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3598. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3599. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3600. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3601. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3602. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3603. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3604. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3605. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3606. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3607. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3608. ------------------------Error Log End----------------------------
  3609. ------------------------Error Log start----------------------------
  3610. Date:-10/17/2025 12:19:16 PM
  3611. Application Name :Npgsql
  3612. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3613. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3614. --- End of stack trace from previous location where exception was thrown ---
  3615. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3616. --- End of stack trace from previous location where exception was thrown ---
  3617. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3618. --- End of stack trace from previous location where exception was thrown ---
  3619. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3620. at Npgsql.NpgsqlDataReader.NextResult()
  3621. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3622. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3623. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3624. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3625. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3626. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3627. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3628. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3629. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3630. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3631. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3632. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3633. ------------------------Error Log End----------------------------
  3634. ------------------------Error Log start----------------------------
  3635. Date:-10/17/2025 12:19:21 PM
  3636. Application Name :Npgsql
  3637. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3638. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3639. --- End of stack trace from previous location where exception was thrown ---
  3640. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3641. --- End of stack trace from previous location where exception was thrown ---
  3642. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3643. --- End of stack trace from previous location where exception was thrown ---
  3644. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3645. at Npgsql.NpgsqlDataReader.NextResult()
  3646. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3647. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3648. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3649. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3650. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3651. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3652. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3653. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3654. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3655. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3656. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3657. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3658. ------------------------Error Log End----------------------------
  3659. ------------------------Error Log start----------------------------
  3660. Date:-10/17/2025 12:31:26 PM
  3661. Application Name :Npgsql
  3662. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3663. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3664. --- End of stack trace from previous location where exception was thrown ---
  3665. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3666. --- End of stack trace from previous location where exception was thrown ---
  3667. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3668. --- End of stack trace from previous location where exception was thrown ---
  3669. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3670. at Npgsql.NpgsqlDataReader.NextResult()
  3671. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3672. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3673. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3674. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3675. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3676. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3677. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3678. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3679. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3680. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3681. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3682. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3683. ------------------------Error Log End----------------------------
  3684. ------------------------Error Log start----------------------------
  3685. Date:-10/17/2025 12:33:39 PM
  3686. Application Name :Npgsql
  3687. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3688. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3689. --- End of stack trace from previous location where exception was thrown ---
  3690. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3691. --- End of stack trace from previous location where exception was thrown ---
  3692. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3693. --- End of stack trace from previous location where exception was thrown ---
  3694. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3695. at Npgsql.NpgsqlDataReader.NextResult()
  3696. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3697. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3698. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3699. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3700. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3701. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3702. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3703. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3704. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3705. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3706. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3707. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3708. ------------------------Error Log End----------------------------
  3709. ------------------------Error Log start----------------------------
  3710. Date:-10/17/2025 12:36:25 PM
  3711. Application Name :Npgsql
  3712. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3713. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3714. --- End of stack trace from previous location where exception was thrown ---
  3715. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3716. --- End of stack trace from previous location where exception was thrown ---
  3717. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3718. --- End of stack trace from previous location where exception was thrown ---
  3719. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3720. at Npgsql.NpgsqlDataReader.NextResult()
  3721. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3722. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3723. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3724. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3725. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3726. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3727. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3728. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3729. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3730. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3731. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3732. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3733. ------------------------Error Log End----------------------------
  3734. ------------------------Error Log start----------------------------
  3735. Date:-10/17/2025 1:08:03 PM
  3736. Application Name :Npgsql
  3737. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3738. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3739. --- End of stack trace from previous location where exception was thrown ---
  3740. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3741. --- End of stack trace from previous location where exception was thrown ---
  3742. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3743. --- End of stack trace from previous location where exception was thrown ---
  3744. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3745. at Npgsql.NpgsqlDataReader.NextResult()
  3746. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3747. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3748. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3749. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3750. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3751. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3752. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3753. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3754. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3755. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3756. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3757. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3758. ------------------------Error Log End----------------------------
  3759. ------------------------Error Log start----------------------------
  3760. Date:-10/17/2025 1:08:06 PM
  3761. Application Name :Npgsql
  3762. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3763. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3764. --- End of stack trace from previous location where exception was thrown ---
  3765. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3766. --- End of stack trace from previous location where exception was thrown ---
  3767. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3768. --- End of stack trace from previous location where exception was thrown ---
  3769. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3770. at Npgsql.NpgsqlDataReader.NextResult()
  3771. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3772. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3773. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3774. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3775. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3776. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3777. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3778. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3779. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3780. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3781. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3782. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3783. ------------------------Error Log End----------------------------
  3784. ------------------------Error Log start----------------------------
  3785. Date:-10/17/2025 1:10:36 PM
  3786. Application Name :Npgsql
  3787. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3788. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3789. --- End of stack trace from previous location where exception was thrown ---
  3790. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3791. --- End of stack trace from previous location where exception was thrown ---
  3792. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3793. --- End of stack trace from previous location where exception was thrown ---
  3794. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3795. at Npgsql.NpgsqlDataReader.NextResult()
  3796. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3797. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3798. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3799. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3800. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3801. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3802. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3803. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3804. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3805. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3806. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3807. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3808. ------------------------Error Log End----------------------------
  3809. ------------------------Error Log start----------------------------
  3810. Date:-10/17/2025 1:16:08 PM
  3811. Application Name :Npgsql
  3812. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3813. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3814. --- End of stack trace from previous location where exception was thrown ---
  3815. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3816. --- End of stack trace from previous location where exception was thrown ---
  3817. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3818. --- End of stack trace from previous location where exception was thrown ---
  3819. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3820. at Npgsql.NpgsqlDataReader.NextResult()
  3821. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3822. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3823. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3824. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3825. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3826. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3827. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3828. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3829. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3830. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3831. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3832. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3833. ------------------------Error Log End----------------------------
  3834. ------------------------Error Log start----------------------------
  3835. Date:-10/17/2025 1:38:50 PM
  3836. Application Name :Npgsql
  3837. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3838. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3839. --- End of stack trace from previous location where exception was thrown ---
  3840. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3841. --- End of stack trace from previous location where exception was thrown ---
  3842. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3843. --- End of stack trace from previous location where exception was thrown ---
  3844. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3845. at Npgsql.NpgsqlDataReader.NextResult()
  3846. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3847. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3848. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3849. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3850. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3851. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3852. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3853. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3854. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3855. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3856. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3857. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3858. ------------------------Error Log End----------------------------
  3859. ------------------------Error Log start----------------------------
  3860. Date:-10/17/2025 1:38:55 PM
  3861. Application Name :Npgsql
  3862. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3863. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3864. --- End of stack trace from previous location where exception was thrown ---
  3865. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3866. --- End of stack trace from previous location where exception was thrown ---
  3867. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3868. --- End of stack trace from previous location where exception was thrown ---
  3869. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3870. at Npgsql.NpgsqlDataReader.NextResult()
  3871. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3872. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3873. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3874. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3875. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3876. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3877. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3878. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3879. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3880. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3881. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3882. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3883. ------------------------Error Log End----------------------------
  3884. ------------------------Error Log start----------------------------
  3885. Date:-10/17/2025 2:45:49 PM
  3886. Application Name :Npgsql
  3887. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3888. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3889. --- End of stack trace from previous location where exception was thrown ---
  3890. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3891. --- End of stack trace from previous location where exception was thrown ---
  3892. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3893. --- End of stack trace from previous location where exception was thrown ---
  3894. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3895. at Npgsql.NpgsqlDataReader.NextResult()
  3896. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3897. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3898. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3899. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3900. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3901. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3902. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3903. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3904. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3905. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3906. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3907. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3908. ------------------------Error Log End----------------------------
  3909. ------------------------Error Log start----------------------------
  3910. Date:-10/17/2025 2:50:20 PM
  3911. Application Name :Npgsql
  3912. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3913. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3914. --- End of stack trace from previous location where exception was thrown ---
  3915. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3916. --- End of stack trace from previous location where exception was thrown ---
  3917. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3918. --- End of stack trace from previous location where exception was thrown ---
  3919. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3920. at Npgsql.NpgsqlDataReader.NextResult()
  3921. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3922. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3923. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3924. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3925. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3926. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3927. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3928. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3929. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3930. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3931. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3932. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 58
  3933. ------------------------Error Log End----------------------------
  3934. ------------------------Error Log start----------------------------
  3935. Date:-10/17/2025 2:59:20 PM
  3936. Application Name :Npgsql
  3937. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3938. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3939. --- End of stack trace from previous location where exception was thrown ---
  3940. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3941. --- End of stack trace from previous location where exception was thrown ---
  3942. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3943. --- End of stack trace from previous location where exception was thrown ---
  3944. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3945. at Npgsql.NpgsqlDataReader.NextResult()
  3946. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3947. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3948. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3949. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3950. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3951. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3952. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3953. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3954. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3955. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3956. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3957. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  3958. ------------------------Error Log End----------------------------
  3959. ------------------------Error Log start----------------------------
  3960. Date:-10/17/2025 3:07:29 PM
  3961. Application Name :Npgsql
  3962. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3963. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3964. --- End of stack trace from previous location where exception was thrown ---
  3965. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3966. --- End of stack trace from previous location where exception was thrown ---
  3967. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3968. --- End of stack trace from previous location where exception was thrown ---
  3969. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3970. at Npgsql.NpgsqlDataReader.NextResult()
  3971. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3972. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3973. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3974. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  3975. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  3976. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  3977. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  3978. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  3979. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  3980. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  3981. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  3982. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  3983. ------------------------Error Log End----------------------------
  3984. ------------------------Error Log start----------------------------
  3985. Date:-10/17/2025 3:12:14 PM
  3986. Application Name :Npgsql
  3987. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  3988. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3989. --- End of stack trace from previous location where exception was thrown ---
  3990. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  3991. --- End of stack trace from previous location where exception was thrown ---
  3992. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  3993. --- End of stack trace from previous location where exception was thrown ---
  3994. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  3995. at Npgsql.NpgsqlDataReader.NextResult()
  3996. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  3997. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  3998. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  3999. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4000. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4001. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4002. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4003. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4004. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4005. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4006. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4007. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4008. ------------------------Error Log End----------------------------
  4009. ------------------------Error Log start----------------------------
  4010. Date:-10/17/2025 3:40:10 PM
  4011. Application Name :Npgsql
  4012. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4013. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4014. --- End of stack trace from previous location where exception was thrown ---
  4015. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4016. --- End of stack trace from previous location where exception was thrown ---
  4017. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4018. --- End of stack trace from previous location where exception was thrown ---
  4019. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4020. at Npgsql.NpgsqlDataReader.NextResult()
  4021. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4022. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4023. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4024. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4025. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4026. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4027. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4028. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4029. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4030. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4031. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4032. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4033. ------------------------Error Log End----------------------------
  4034. ------------------------Error Log start----------------------------
  4035. Date:-10/17/2025 3:40:14 PM
  4036. Application Name :Npgsql
  4037. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4038. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4039. --- End of stack trace from previous location where exception was thrown ---
  4040. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4041. --- End of stack trace from previous location where exception was thrown ---
  4042. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4043. --- End of stack trace from previous location where exception was thrown ---
  4044. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4045. at Npgsql.NpgsqlDataReader.NextResult()
  4046. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4047. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4048. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4049. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4050. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4051. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4052. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4053. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4054. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4055. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4056. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4057. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4058. ------------------------Error Log End----------------------------
  4059. ------------------------Error Log start----------------------------
  4060. Date:-10/17/2025 3:52:07 PM
  4061. Application Name :Npgsql
  4062. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4063. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4064. --- End of stack trace from previous location where exception was thrown ---
  4065. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4066. --- End of stack trace from previous location where exception was thrown ---
  4067. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4068. --- End of stack trace from previous location where exception was thrown ---
  4069. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4070. at Npgsql.NpgsqlDataReader.NextResult()
  4071. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4072. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4073. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4074. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4075. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4076. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4077. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4078. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4079. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4080. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4081. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4082. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4083. ------------------------Error Log End----------------------------
  4084. ------------------------Error Log start----------------------------
  4085. Date:-10/17/2025 5:22:59 PM
  4086. Application Name :Npgsql
  4087. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4088. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4089. --- End of stack trace from previous location where exception was thrown ---
  4090. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4091. --- End of stack trace from previous location where exception was thrown ---
  4092. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4093. --- End of stack trace from previous location where exception was thrown ---
  4094. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4095. at Npgsql.NpgsqlDataReader.NextResult()
  4096. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4097. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4098. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4099. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4100. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4101. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4102. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4103. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4104. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4105. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4106. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4107. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4108. ------------------------Error Log End----------------------------
  4109. ------------------------Error Log start----------------------------
  4110. Date:-10/17/2025 5:27:35 PM
  4111. Application Name :Npgsql
  4112. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4113. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4114. --- End of stack trace from previous location where exception was thrown ---
  4115. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4116. --- End of stack trace from previous location where exception was thrown ---
  4117. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4118. --- End of stack trace from previous location where exception was thrown ---
  4119. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4120. at Npgsql.NpgsqlDataReader.NextResult()
  4121. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4122. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4123. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4124. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4125. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4126. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4127. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4128. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4129. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4130. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4131. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4132. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4133. ------------------------Error Log End----------------------------
  4134. ------------------------Error Log start----------------------------
  4135. Date:-10/17/2025 5:33:58 PM
  4136. Application Name :Npgsql
  4137. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4138. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4139. --- End of stack trace from previous location where exception was thrown ---
  4140. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4141. --- End of stack trace from previous location where exception was thrown ---
  4142. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4143. --- End of stack trace from previous location where exception was thrown ---
  4144. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4145. at Npgsql.NpgsqlDataReader.NextResult()
  4146. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4147. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4148. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4149. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4150. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4151. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4152. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4153. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4154. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4155. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4156. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4157. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4158. ------------------------Error Log End----------------------------
  4159. ------------------------Error Log start----------------------------
  4160. Date:-10/21/2025 12:31:36 PM
  4161. Application Name :Npgsql
  4162. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4163. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4164. --- End of stack trace from previous location where exception was thrown ---
  4165. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4166. --- End of stack trace from previous location where exception was thrown ---
  4167. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4168. --- End of stack trace from previous location where exception was thrown ---
  4169. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4170. at Npgsql.NpgsqlDataReader.NextResult()
  4171. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4172. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4173. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4174. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4175. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4176. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4177. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4178. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4179. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4180. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4181. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4182. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4183. ------------------------Error Log End----------------------------
  4184. ------------------------Error Log start----------------------------
  4185. Date:-10/21/2025 12:38:38 PM
  4186. Application Name :Npgsql
  4187. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4188. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4189. --- End of stack trace from previous location where exception was thrown ---
  4190. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4191. --- End of stack trace from previous location where exception was thrown ---
  4192. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4193. --- End of stack trace from previous location where exception was thrown ---
  4194. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4195. at Npgsql.NpgsqlDataReader.NextResult()
  4196. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4197. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4198. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4199. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4200. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4201. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4202. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4203. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4204. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4205. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4206. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4207. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4208. ------------------------Error Log End----------------------------
  4209. ------------------------Error Log start----------------------------
  4210. Date:-10/21/2025 12:48:09 PM
  4211. Application Name :Npgsql
  4212. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4213. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4214. --- End of stack trace from previous location where exception was thrown ---
  4215. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4216. --- End of stack trace from previous location where exception was thrown ---
  4217. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4218. --- End of stack trace from previous location where exception was thrown ---
  4219. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4220. at Npgsql.NpgsqlDataReader.NextResult()
  4221. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4222. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4223. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4224. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4225. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4226. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4227. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4228. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4229. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4230. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4231. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4232. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4233. ------------------------Error Log End----------------------------
  4234. ------------------------Error Log start----------------------------
  4235. Date:-10/21/2025 3:01:30 PM
  4236. Application Name :Npgsql
  4237. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4238. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4239. --- End of stack trace from previous location where exception was thrown ---
  4240. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4241. --- End of stack trace from previous location where exception was thrown ---
  4242. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4243. --- End of stack trace from previous location where exception was thrown ---
  4244. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4245. at Npgsql.NpgsqlDataReader.NextResult()
  4246. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4247. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4248. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4249. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4250. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4251. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4252. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4253. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4254. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4255. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4256. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4257. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4258. ------------------------Error Log End----------------------------
  4259. ------------------------Error Log start----------------------------
  4260. Date:-10/21/2025 3:16:43 PM
  4261. Application Name :Npgsql
  4262. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4263. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4264. --- End of stack trace from previous location where exception was thrown ---
  4265. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4266. --- End of stack trace from previous location where exception was thrown ---
  4267. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4268. --- End of stack trace from previous location where exception was thrown ---
  4269. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4270. at Npgsql.NpgsqlDataReader.NextResult()
  4271. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4272. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4273. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4274. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4275. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4276. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4277. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4278. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4279. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4280. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4281. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4282. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4283. ------------------------Error Log End----------------------------
  4284. ------------------------Error Log start----------------------------
  4285. Date:-10/21/2025 3:16:49 PM
  4286. Application Name :Npgsql
  4287. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4288. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4289. --- End of stack trace from previous location where exception was thrown ---
  4290. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4291. --- End of stack trace from previous location where exception was thrown ---
  4292. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4293. --- End of stack trace from previous location where exception was thrown ---
  4294. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4295. at Npgsql.NpgsqlDataReader.NextResult()
  4296. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4297. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4298. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4299. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4300. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4301. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4302. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4303. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4304. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4305. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4306. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4307. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4308. ------------------------Error Log End----------------------------
  4309. ------------------------Error Log start----------------------------
  4310. Date:-10/21/2025 3:20:59 PM
  4311. Application Name :Npgsql
  4312. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4313. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4314. --- End of stack trace from previous location where exception was thrown ---
  4315. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4316. --- End of stack trace from previous location where exception was thrown ---
  4317. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4318. --- End of stack trace from previous location where exception was thrown ---
  4319. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4320. at Npgsql.NpgsqlDataReader.NextResult()
  4321. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4322. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4323. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4324. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4325. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4326. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4327. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4328. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4329. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4330. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4331. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4332. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4333. ------------------------Error Log End----------------------------
  4334. ------------------------Error Log start----------------------------
  4335. Date:-10/21/2025 4:56:56 PM
  4336. Application Name :Npgsql
  4337. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4338. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4339. --- End of stack trace from previous location where exception was thrown ---
  4340. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4341. --- End of stack trace from previous location where exception was thrown ---
  4342. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4343. --- End of stack trace from previous location where exception was thrown ---
  4344. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4345. at Npgsql.NpgsqlDataReader.NextResult()
  4346. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4347. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4348. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4349. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4350. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4351. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4352. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4353. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4354. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4355. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4356. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4357. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4358. ------------------------Error Log End----------------------------
  4359. ------------------------Error Log start----------------------------
  4360. Date:-10/21/2025 4:57:05 PM
  4361. Application Name :Npgsql
  4362. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4363. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4364. --- End of stack trace from previous location where exception was thrown ---
  4365. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4366. --- End of stack trace from previous location where exception was thrown ---
  4367. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4368. --- End of stack trace from previous location where exception was thrown ---
  4369. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4370. at Npgsql.NpgsqlDataReader.NextResult()
  4371. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4372. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4373. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4374. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4375. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4376. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4377. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4378. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4379. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4380. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4381. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4382. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4383. ------------------------Error Log End----------------------------
  4384. ------------------------Error Log start----------------------------
  4385. Date:-10/21/2025 5:03:33 PM
  4386. Application Name :Npgsql
  4387. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4388. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4389. --- End of stack trace from previous location where exception was thrown ---
  4390. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4391. --- End of stack trace from previous location where exception was thrown ---
  4392. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4393. --- End of stack trace from previous location where exception was thrown ---
  4394. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4395. at Npgsql.NpgsqlDataReader.NextResult()
  4396. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4397. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4398. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4399. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4400. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4401. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4402. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4403. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4404. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4405. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4406. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4407. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4408. ------------------------Error Log End----------------------------
  4409. ------------------------Error Log start----------------------------
  4410. Date:-10/21/2025 5:28:01 PM
  4411. Application Name :Npgsql
  4412. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4413. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4414. --- End of stack trace from previous location where exception was thrown ---
  4415. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4416. --- End of stack trace from previous location where exception was thrown ---
  4417. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4418. --- End of stack trace from previous location where exception was thrown ---
  4419. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4420. at Npgsql.NpgsqlDataReader.NextResult()
  4421. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4422. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4423. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4424. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4425. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4426. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4427. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4428. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4429. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4430. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4431. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4432. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4433. ------------------------Error Log End----------------------------
  4434. ------------------------Error Log start----------------------------
  4435. Date:-10/24/2025 5:45:00 PM
  4436. Application Name :Npgsql
  4437. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4438. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4439. --- End of stack trace from previous location where exception was thrown ---
  4440. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4441. --- End of stack trace from previous location where exception was thrown ---
  4442. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4443. --- End of stack trace from previous location where exception was thrown ---
  4444. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4445. at Npgsql.NpgsqlDataReader.NextResult()
  4446. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4447. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4448. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4449. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4450. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4451. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4452. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4453. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4454. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4455. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4456. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4457. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4458. ------------------------Error Log End----------------------------
  4459. ------------------------Error Log start----------------------------
  4460. Date:-10/24/2025 5:49:43 PM
  4461. Application Name :Npgsql
  4462. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4463. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4464. --- End of stack trace from previous location where exception was thrown ---
  4465. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4466. --- End of stack trace from previous location where exception was thrown ---
  4467. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4468. --- End of stack trace from previous location where exception was thrown ---
  4469. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4470. at Npgsql.NpgsqlDataReader.NextResult()
  4471. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4472. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4473. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4474. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4475. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4476. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4477. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4478. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4479. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4480. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4481. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4482. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4483. ------------------------Error Log End----------------------------
  4484. ------------------------Error Log start----------------------------
  4485. Date:-10/31/2025 4:22:29 PM
  4486. Application Name :Npgsql
  4487. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4488. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4489. --- End of stack trace from previous location where exception was thrown ---
  4490. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4491. --- End of stack trace from previous location where exception was thrown ---
  4492. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4493. --- End of stack trace from previous location where exception was thrown ---
  4494. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4495. at Npgsql.NpgsqlDataReader.NextResult()
  4496. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4497. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4498. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4499. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4500. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4501. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4502. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4503. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4504. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4505. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4506. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4507. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4508. ------------------------Error Log End----------------------------
  4509. ------------------------Error Log start----------------------------
  4510. Date:-10/31/2025 4:22:32 PM
  4511. Application Name :Npgsql
  4512. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4513. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4514. --- End of stack trace from previous location where exception was thrown ---
  4515. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4516. --- End of stack trace from previous location where exception was thrown ---
  4517. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4518. --- End of stack trace from previous location where exception was thrown ---
  4519. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4520. at Npgsql.NpgsqlDataReader.NextResult()
  4521. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4522. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4523. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4524. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4525. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4526. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4527. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4528. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4529. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4530. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4531. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 43
  4532. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4533. ------------------------Error Log End----------------------------
  4534. ------------------------Error Log start----------------------------
  4535. Date:-11/6/2025 8:01:48 PM
  4536. Application Name :Npgsql
  4537. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4538. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4539. --- End of stack trace from previous location where exception was thrown ---
  4540. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4541. --- End of stack trace from previous location where exception was thrown ---
  4542. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4543. --- End of stack trace from previous location where exception was thrown ---
  4544. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4545. at Npgsql.NpgsqlDataReader.NextResult()
  4546. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4547. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4548. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4549. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4550. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4551. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4552. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4553. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4554. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4555. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4556. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4557. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4558. ------------------------Error Log End----------------------------
  4559. ------------------------Error Log start----------------------------
  4560. Date:-11/6/2025 8:01:55 PM
  4561. Application Name :Npgsql
  4562. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4563. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4564. --- End of stack trace from previous location where exception was thrown ---
  4565. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4566. --- End of stack trace from previous location where exception was thrown ---
  4567. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4568. --- End of stack trace from previous location where exception was thrown ---
  4569. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4570. at Npgsql.NpgsqlDataReader.NextResult()
  4571. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4572. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4573. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4574. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4575. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4576. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4577. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4578. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4579. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4580. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4581. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4582. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4583. ------------------------Error Log End----------------------------
  4584. ------------------------Error Log start----------------------------
  4585. Date:-11/6/2025 8:05:54 PM
  4586. Application Name :Npgsql
  4587. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4588. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4589. --- End of stack trace from previous location where exception was thrown ---
  4590. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4591. --- End of stack trace from previous location where exception was thrown ---
  4592. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4593. --- End of stack trace from previous location where exception was thrown ---
  4594. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4595. at Npgsql.NpgsqlDataReader.NextResult()
  4596. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4597. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4598. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4599. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4600. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4601. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4602. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4603. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4604. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4605. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4606. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4607. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 59
  4608. ------------------------Error Log End----------------------------
  4609. ------------------------Error Log start----------------------------
  4610. Date:-11/8/2025 4:08:57 PM
  4611. Application Name :Npgsql
  4612. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4613. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4614. --- End of stack trace from previous location where exception was thrown ---
  4615. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4616. --- End of stack trace from previous location where exception was thrown ---
  4617. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4618. --- End of stack trace from previous location where exception was thrown ---
  4619. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4620. at Npgsql.NpgsqlDataReader.NextResult()
  4621. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4622. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4623. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4624. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4625. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4626. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4627. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4628. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4629. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4630. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4631. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4632. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4633. ------------------------Error Log End----------------------------
  4634. ------------------------Error Log start----------------------------
  4635. Date:-11/8/2025 4:09:21 PM
  4636. Application Name :Npgsql
  4637. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4638. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4639. --- End of stack trace from previous location where exception was thrown ---
  4640. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4641. --- End of stack trace from previous location where exception was thrown ---
  4642. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4643. --- End of stack trace from previous location where exception was thrown ---
  4644. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4645. at Npgsql.NpgsqlDataReader.NextResult()
  4646. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4647. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4648. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4649. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4650. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4651. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4652. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4653. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4654. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4655. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4656. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4657. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4658. ------------------------Error Log End----------------------------
  4659. ------------------------Error Log start----------------------------
  4660. Date:-11/8/2025 4:18:21 PM
  4661. Application Name :Npgsql
  4662. Error Message :The operation has timed out.
  4663. Method Name : at Npgsql.PostgresDatabaseInfo.LoadBackendTypes(NpgsqlConnection conn, NpgsqlTimeout timeout, Boolean async)
  4664. at Npgsql.PostgresDatabaseInfo.LoadPostgresInfo(NpgsqlConnection conn, NpgsqlTimeout timeout, Boolean async)
  4665. at Npgsql.PostgresDatabaseInfoFactory.Load(NpgsqlConnection conn, NpgsqlTimeout timeout, Boolean async)
  4666. at Npgsql.NpgsqlDatabaseInfo.Load(NpgsqlConnection conn, NpgsqlTimeout timeout, Boolean async)
  4667. at Npgsql.NpgsqlConnector.LoadDatabaseInfo(NpgsqlTimeout timeout, Boolean async)
  4668. at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout, Boolean async, CancellationToken cancellationToken)
  4669. at Npgsql.NpgsqlConnection.<>c__DisplayClass32_0.<<Open>g__OpenLong|0>d.MoveNext()
  4670. --- End of stack trace from previous location where exception was thrown ---
  4671. at Npgsql.NpgsqlConnection.Open()
  4672. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 154
  4673. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4674. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4675. ------------------------Error Log End----------------------------
  4676. ------------------------Error Log start----------------------------
  4677. Date:-11/8/2025 4:23:44 PM
  4678. Application Name :Npgsql
  4679. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4680. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4681. --- End of stack trace from previous location where exception was thrown ---
  4682. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4683. --- End of stack trace from previous location where exception was thrown ---
  4684. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4685. --- End of stack trace from previous location where exception was thrown ---
  4686. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4687. at Npgsql.NpgsqlDataReader.NextResult()
  4688. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4689. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4690. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4691. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4692. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4693. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4694. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4695. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4696. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4697. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4698. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4699. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4700. ------------------------Error Log End----------------------------
  4701. ------------------------Error Log start----------------------------
  4702. Date:-11/8/2025 4:26:15 PM
  4703. Application Name :Npgsql
  4704. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4705. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4706. --- End of stack trace from previous location where exception was thrown ---
  4707. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4708. --- End of stack trace from previous location where exception was thrown ---
  4709. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4710. --- End of stack trace from previous location where exception was thrown ---
  4711. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4712. at Npgsql.NpgsqlDataReader.NextResult()
  4713. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4714. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4715. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4716. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4717. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4718. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4719. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4720. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4721. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4722. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4723. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4724. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4725. ------------------------Error Log End----------------------------
  4726. ------------------------Error Log start----------------------------
  4727. Date:-11/8/2025 4:31:23 PM
  4728. Application Name :Npgsql
  4729. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4730. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4731. --- End of stack trace from previous location where exception was thrown ---
  4732. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4733. --- End of stack trace from previous location where exception was thrown ---
  4734. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4735. --- End of stack trace from previous location where exception was thrown ---
  4736. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4737. at Npgsql.NpgsqlDataReader.NextResult()
  4738. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4739. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4740. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4741. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4742. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4743. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4744. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4745. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4746. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4747. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4748. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4749. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4750. ------------------------Error Log End----------------------------
  4751. ------------------------Error Log start----------------------------
  4752. Date:-11/21/2025 1:56:43 PM
  4753. Application Name :Npgsql
  4754. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4755. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4756. --- End of stack trace from previous location where exception was thrown ---
  4757. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4758. --- End of stack trace from previous location where exception was thrown ---
  4759. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4760. --- End of stack trace from previous location where exception was thrown ---
  4761. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4762. at Npgsql.NpgsqlDataReader.NextResult()
  4763. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4764. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4765. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4766. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4767. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4768. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4769. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4770. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4771. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4772. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4773. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4774. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4775. ------------------------Error Log End----------------------------
  4776. ------------------------Error Log start----------------------------
  4777. Date:-11/21/2025 1:57:23 PM
  4778. Application Name :Npgsql
  4779. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4780. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4781. --- End of stack trace from previous location where exception was thrown ---
  4782. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4783. --- End of stack trace from previous location where exception was thrown ---
  4784. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4785. --- End of stack trace from previous location where exception was thrown ---
  4786. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4787. at Npgsql.NpgsqlDataReader.NextResult()
  4788. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4789. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4790. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4791. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4792. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4793. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4794. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4795. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4796. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4797. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4798. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4799. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4800. ------------------------Error Log End----------------------------
  4801. ------------------------Error Log start----------------------------
  4802. Date:-12/22/2025 6:20:08 PM
  4803. Application Name :Npgsql
  4804. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4805. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4806. --- End of stack trace from previous location where exception was thrown ---
  4807. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4808. --- End of stack trace from previous location where exception was thrown ---
  4809. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4810. --- End of stack trace from previous location where exception was thrown ---
  4811. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4812. at Npgsql.NpgsqlDataReader.NextResult()
  4813. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4814. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4815. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4816. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4817. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4818. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4819. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4820. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4821. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4822. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4823. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4824. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4825. ------------------------Error Log End----------------------------
  4826. ------------------------Error Log start----------------------------
  4827. Date:-12/22/2025 6:22:35 PM
  4828. Application Name :Npgsql
  4829. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4830. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4831. --- End of stack trace from previous location where exception was thrown ---
  4832. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4833. --- End of stack trace from previous location where exception was thrown ---
  4834. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4835. --- End of stack trace from previous location where exception was thrown ---
  4836. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4837. at Npgsql.NpgsqlDataReader.NextResult()
  4838. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4839. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4840. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4841. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4842. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4843. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4844. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4845. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4846. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4847. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4848. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4849. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4850. ------------------------Error Log End----------------------------
  4851. ------------------------Error Log start----------------------------
  4852. Date:-12/22/2025 6:24:17 PM
  4853. Application Name :Npgsql
  4854. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4855. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4856. --- End of stack trace from previous location where exception was thrown ---
  4857. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4858. --- End of stack trace from previous location where exception was thrown ---
  4859. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4860. --- End of stack trace from previous location where exception was thrown ---
  4861. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4862. at Npgsql.NpgsqlDataReader.NextResult()
  4863. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4864. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4865. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4866. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4867. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4868. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4869. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4870. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4871. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4872. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4873. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4874. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4875. ------------------------Error Log End----------------------------
  4876. ------------------------Error Log start----------------------------
  4877. Date:-12/24/2025 4:37:10 PM
  4878. Application Name :Npgsql
  4879. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4880. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4881. --- End of stack trace from previous location where exception was thrown ---
  4882. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4883. --- End of stack trace from previous location where exception was thrown ---
  4884. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4885. --- End of stack trace from previous location where exception was thrown ---
  4886. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4887. at Npgsql.NpgsqlDataReader.NextResult()
  4888. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4889. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4890. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4891. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4892. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4893. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4894. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4895. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4896. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4897. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4898. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4899. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4900. ------------------------Error Log End----------------------------
  4901. ------------------------Error Log start----------------------------
  4902. Date:-12/24/2025 4:39:24 PM
  4903. Application Name :Npgsql
  4904. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4905. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4906. --- End of stack trace from previous location where exception was thrown ---
  4907. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4908. --- End of stack trace from previous location where exception was thrown ---
  4909. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4910. --- End of stack trace from previous location where exception was thrown ---
  4911. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4912. at Npgsql.NpgsqlDataReader.NextResult()
  4913. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4914. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4915. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4916. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4917. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4918. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4919. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4920. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4921. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4922. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4923. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4924. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4925. ------------------------Error Log End----------------------------
  4926. ------------------------Error Log start----------------------------
  4927. Date:-12/24/2025 4:40:06 PM
  4928. Application Name :Npgsql
  4929. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4930. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4931. --- End of stack trace from previous location where exception was thrown ---
  4932. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4933. --- End of stack trace from previous location where exception was thrown ---
  4934. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4935. --- End of stack trace from previous location where exception was thrown ---
  4936. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4937. at Npgsql.NpgsqlDataReader.NextResult()
  4938. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4939. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4940. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4941. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4942. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4943. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4944. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4945. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4946. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4947. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4948. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4949. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4950. ------------------------Error Log End----------------------------
  4951. ------------------------Error Log start----------------------------
  4952. Date:-12/24/2025 4:41:24 PM
  4953. Application Name :Npgsql
  4954. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4955. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4956. --- End of stack trace from previous location where exception was thrown ---
  4957. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4958. --- End of stack trace from previous location where exception was thrown ---
  4959. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4960. --- End of stack trace from previous location where exception was thrown ---
  4961. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4962. at Npgsql.NpgsqlDataReader.NextResult()
  4963. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4964. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4965. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4966. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4967. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4968. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4969. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4970. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4971. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4972. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4973. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4974. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  4975. ------------------------Error Log End----------------------------
  4976. ------------------------Error Log start----------------------------
  4977. Date:-12/24/2025 4:42:24 PM
  4978. Application Name :Npgsql
  4979. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  4980. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4981. --- End of stack trace from previous location where exception was thrown ---
  4982. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  4983. --- End of stack trace from previous location where exception was thrown ---
  4984. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  4985. --- End of stack trace from previous location where exception was thrown ---
  4986. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  4987. at Npgsql.NpgsqlDataReader.NextResult()
  4988. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  4989. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  4990. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  4991. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  4992. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  4993. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  4994. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  4995. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  4996. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  4997. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\App_Data\CommonRepository.cs:line 158
  4998. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  4999. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (28)\Service_published_19092024\Service_published_19092024\Service1\Latestcommontoolservice\Service (4)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5000. ------------------------Error Log End----------------------------
  5001. ------------------------Error Log start----------------------------
  5002. Date:-13-01-2026 18:02:22
  5003. Application Name :Npgsql
  5004. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5005. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5006. --- End of stack trace from previous location where exception was thrown ---
  5007. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5008. --- End of stack trace from previous location where exception was thrown ---
  5009. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5010. --- End of stack trace from previous location where exception was thrown ---
  5011. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5012. at Npgsql.NpgsqlDataReader.NextResult()
  5013. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5014. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5015. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5016. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5017. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5018. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5019. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5020. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5021. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5022. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\New folder (2)\commontool\Service (1)\Service\App_Data\CommonRepository.cs:line 158
  5023. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\New folder (2)\commontool\Service (1)\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5024. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\New folder (2)\commontool\Service (1)\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5025. ------------------------Error Log End----------------------------
  5026. ------------------------Error Log start----------------------------
  5027. Date:-12-02-2026 11:44:53
  5028. Application Name :Npgsql
  5029. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5030. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5031. --- End of stack trace from previous location where exception was thrown ---
  5032. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5033. --- End of stack trace from previous location where exception was thrown ---
  5034. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5035. --- End of stack trace from previous location where exception was thrown ---
  5036. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5037. at Npgsql.NpgsqlDataReader.NextResult()
  5038. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5039. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5040. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5041. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5042. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5043. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5044. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5045. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5046. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5047. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5048. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5049. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5050. ------------------------Error Log End----------------------------
  5051. ------------------------Error Log start----------------------------
  5052. Date:-12-02-2026 12:38:46
  5053. Application Name :Npgsql
  5054. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5055. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5056. --- End of stack trace from previous location where exception was thrown ---
  5057. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5058. --- End of stack trace from previous location where exception was thrown ---
  5059. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5060. --- End of stack trace from previous location where exception was thrown ---
  5061. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5062. at Npgsql.NpgsqlDataReader.NextResult()
  5063. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5064. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5065. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5066. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5067. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5068. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5069. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5070. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5071. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5072. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5073. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5074. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5075. ------------------------Error Log End----------------------------
  5076. ------------------------Error Log start----------------------------
  5077. Date:-12-02-2026 14:13:30
  5078. Application Name :Npgsql
  5079. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5080. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5081. --- End of stack trace from previous location where exception was thrown ---
  5082. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5083. --- End of stack trace from previous location where exception was thrown ---
  5084. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5085. --- End of stack trace from previous location where exception was thrown ---
  5086. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5087. at Npgsql.NpgsqlDataReader.NextResult()
  5088. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5089. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5090. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5091. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5092. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5093. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5094. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5095. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5096. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5097. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5098. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5099. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5100. ------------------------Error Log End----------------------------
  5101. ------------------------Error Log start----------------------------
  5102. Date:-12-02-2026 14:16:37
  5103. Application Name :Npgsql
  5104. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5105. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5106. --- End of stack trace from previous location where exception was thrown ---
  5107. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5108. --- End of stack trace from previous location where exception was thrown ---
  5109. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5110. --- End of stack trace from previous location where exception was thrown ---
  5111. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5112. at Npgsql.NpgsqlDataReader.NextResult()
  5113. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5114. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5115. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5116. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5117. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5118. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5119. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5120. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5121. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5122. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5123. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5124. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5125. ------------------------Error Log End----------------------------
  5126. ------------------------Error Log start----------------------------
  5127. Date:-12-02-2026 20:14:27
  5128. Application Name :Npgsql
  5129. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5130. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5131. --- End of stack trace from previous location where exception was thrown ---
  5132. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5133. --- End of stack trace from previous location where exception was thrown ---
  5134. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5135. --- End of stack trace from previous location where exception was thrown ---
  5136. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5137. at Npgsql.NpgsqlDataReader.NextResult()
  5138. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5139. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5140. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5141. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5142. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5143. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5144. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5145. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5146. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5147. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5148. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5149. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5150. ------------------------Error Log End----------------------------
  5151. ------------------------Error Log start----------------------------
  5152. Date:-16-02-2026 18:50:25
  5153. Application Name :Npgsql
  5154. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5155. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5156. --- End of stack trace from previous location where exception was thrown ---
  5157. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5158. --- End of stack trace from previous location where exception was thrown ---
  5159. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5160. --- End of stack trace from previous location where exception was thrown ---
  5161. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5162. at Npgsql.NpgsqlDataReader.NextResult()
  5163. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5164. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5165. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5166. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5167. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5168. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5169. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5170. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5171. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5172. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5173. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5174. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 61
  5175. ------------------------Error Log End----------------------------
  5176. ------------------------Error Log start----------------------------
  5177. Date:-17-02-2026 12:37:02
  5178. Application Name :Npgsql
  5179. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5180. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5181. --- End of stack trace from previous location where exception was thrown ---
  5182. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5183. --- End of stack trace from previous location where exception was thrown ---
  5184. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5185. --- End of stack trace from previous location where exception was thrown ---
  5186. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5187. at Npgsql.NpgsqlDataReader.NextResult()
  5188. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5189. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5190. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5191. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5192. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5193. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5194. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5195. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5196. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5197. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5198. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 45
  5199. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 62
  5200. ------------------------Error Log End----------------------------
  5201. ------------------------Error Log start----------------------------
  5202. Date:-17-02-2026 15:40:50
  5203. Application Name :Npgsql
  5204. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5205. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5206. --- End of stack trace from previous location where exception was thrown ---
  5207. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5208. --- End of stack trace from previous location where exception was thrown ---
  5209. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5210. --- End of stack trace from previous location where exception was thrown ---
  5211. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5212. at Npgsql.NpgsqlDataReader.NextResult()
  5213. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5214. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5215. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5216. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5217. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5218. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5219. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5220. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5221. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5222. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5223. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5224. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5225. ------------------------Error Log End----------------------------
  5226. ------------------------Error Log start----------------------------
  5227. Date:-17-02-2026 16:02:27
  5228. Application Name :Npgsql
  5229. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5230. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5231. --- End of stack trace from previous location where exception was thrown ---
  5232. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5233. --- End of stack trace from previous location where exception was thrown ---
  5234. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5235. --- End of stack trace from previous location where exception was thrown ---
  5236. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5237. at Npgsql.NpgsqlDataReader.NextResult()
  5238. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5239. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5240. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5241. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5242. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5243. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5244. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5245. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5246. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5247. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5248. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5249. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5250. ------------------------Error Log End----------------------------
  5251. ------------------------Error Log start----------------------------
  5252. Date:-19-02-2026 10:47:00
  5253. Application Name :Npgsql
  5254. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5255. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5256. --- End of stack trace from previous location where exception was thrown ---
  5257. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5258. --- End of stack trace from previous location where exception was thrown ---
  5259. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5260. --- End of stack trace from previous location where exception was thrown ---
  5261. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5262. at Npgsql.NpgsqlDataReader.NextResult()
  5263. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5264. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5265. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5266. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5267. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5268. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5269. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5270. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5271. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5272. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5273. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5274. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5275. ------------------------Error Log End----------------------------
  5276. ------------------------Error Log start----------------------------
  5277. Date:-19-02-2026 12:52:14
  5278. Application Name :Npgsql
  5279. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5280. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5281. --- End of stack trace from previous location where exception was thrown ---
  5282. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5283. --- End of stack trace from previous location where exception was thrown ---
  5284. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5285. --- End of stack trace from previous location where exception was thrown ---
  5286. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5287. at Npgsql.NpgsqlDataReader.NextResult()
  5288. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5289. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5290. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5291. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5292. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5293. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5294. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5295. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5296. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5297. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5298. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5299. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5300. ------------------------Error Log End----------------------------
  5301. ------------------------Error Log start----------------------------
  5302. Date:-19-02-2026 12:53:39
  5303. Application Name :Npgsql
  5304. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5305. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5306. --- End of stack trace from previous location where exception was thrown ---
  5307. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5308. --- End of stack trace from previous location where exception was thrown ---
  5309. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5310. --- End of stack trace from previous location where exception was thrown ---
  5311. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5312. at Npgsql.NpgsqlDataReader.NextResult()
  5313. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5314. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5315. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5316. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5317. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5318. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5319. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5320. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5321. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5322. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5323. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5324. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5325. ------------------------Error Log End----------------------------
  5326. ------------------------Error Log start----------------------------
  5327. Date:-19-02-2026 13:03:20
  5328. Application Name :Npgsql
  5329. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5330. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5331. --- End of stack trace from previous location where exception was thrown ---
  5332. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5333. --- End of stack trace from previous location where exception was thrown ---
  5334. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5335. --- End of stack trace from previous location where exception was thrown ---
  5336. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5337. at Npgsql.NpgsqlDataReader.NextResult()
  5338. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5339. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5340. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5341. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5342. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5343. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5344. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5345. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5346. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5347. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5348. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5349. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5350. ------------------------Error Log End----------------------------
  5351. ------------------------Error Log start----------------------------
  5352. Date:-19-02-2026 13:03:20
  5353. Application Name :Npgsql
  5354. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5355. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5356. --- End of stack trace from previous location where exception was thrown ---
  5357. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5358. --- End of stack trace from previous location where exception was thrown ---
  5359. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5360. --- End of stack trace from previous location where exception was thrown ---
  5361. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5362. at Npgsql.NpgsqlDataReader.NextResult()
  5363. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5364. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5365. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5366. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5367. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5368. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5369. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5370. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5371. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5372. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5373. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5374. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5375. ------------------------Error Log End----------------------------
  5376. ------------------------Error Log start----------------------------
  5377. Date:-20-02-2026 11:17:54
  5378. Application Name :Npgsql
  5379. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5380. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5381. --- End of stack trace from previous location where exception was thrown ---
  5382. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5383. --- End of stack trace from previous location where exception was thrown ---
  5384. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5385. --- End of stack trace from previous location where exception was thrown ---
  5386. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5387. at Npgsql.NpgsqlDataReader.NextResult()
  5388. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5389. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5390. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5391. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5392. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5393. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5394. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5395. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5396. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5397. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5398. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5399. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5400. ------------------------Error Log End----------------------------
  5401. ------------------------Error Log start----------------------------
  5402. Date:-20-02-2026 17:58:33
  5403. Application Name :Npgsql
  5404. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5405. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5406. --- End of stack trace from previous location where exception was thrown ---
  5407. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5408. --- End of stack trace from previous location where exception was thrown ---
  5409. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5410. --- End of stack trace from previous location where exception was thrown ---
  5411. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5412. at Npgsql.NpgsqlDataReader.NextResult()
  5413. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5414. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5415. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5416. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5417. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5418. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5419. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5420. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5421. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5422. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5423. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5424. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5425. ------------------------Error Log End----------------------------
  5426. ------------------------Error Log start----------------------------
  5427. Date:-23-02-2026 13:00:26
  5428. Application Name :Npgsql
  5429. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5430. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5431. --- End of stack trace from previous location where exception was thrown ---
  5432. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5433. --- End of stack trace from previous location where exception was thrown ---
  5434. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5435. --- End of stack trace from previous location where exception was thrown ---
  5436. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5437. at Npgsql.NpgsqlDataReader.NextResult()
  5438. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5439. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5440. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5441. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5442. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5443. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5444. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5445. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5446. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5447. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5448. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5449. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5450. ------------------------Error Log End----------------------------
  5451. ------------------------Error Log start----------------------------
  5452. Date:-24-02-2026 10:57:48
  5453. Application Name :Npgsql
  5454. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5455. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5456. --- End of stack trace from previous location where exception was thrown ---
  5457. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5458. --- End of stack trace from previous location where exception was thrown ---
  5459. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5460. --- End of stack trace from previous location where exception was thrown ---
  5461. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5462. at Npgsql.NpgsqlDataReader.NextResult()
  5463. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5464. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5465. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5466. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5467. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5468. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5469. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5470. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5471. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5472. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5473. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5474. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5475. ------------------------Error Log End----------------------------
  5476. ------------------------Error Log start----------------------------
  5477. Date:-25-02-2026 13:30:38
  5478. Application Name :Npgsql
  5479. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5480. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5481. --- End of stack trace from previous location where exception was thrown ---
  5482. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5483. --- End of stack trace from previous location where exception was thrown ---
  5484. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5485. --- End of stack trace from previous location where exception was thrown ---
  5486. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5487. at Npgsql.NpgsqlDataReader.NextResult()
  5488. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5489. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5490. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5491. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5492. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5493. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5494. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5495. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5496. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5497. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5498. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5499. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5500. ------------------------Error Log End----------------------------
  5501. ------------------------Error Log start----------------------------
  5502. Date:-25-02-2026 15:15:59
  5503. Application Name :Npgsql
  5504. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5505. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5506. --- End of stack trace from previous location where exception was thrown ---
  5507. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5508. --- End of stack trace from previous location where exception was thrown ---
  5509. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5510. --- End of stack trace from previous location where exception was thrown ---
  5511. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5512. at Npgsql.NpgsqlDataReader.NextResult()
  5513. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5514. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5515. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5516. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5517. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5518. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5519. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5520. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5521. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5522. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5523. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5524. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5525. ------------------------Error Log End----------------------------
  5526. ------------------------Error Log start----------------------------
  5527. Date:-25-02-2026 16:26:38
  5528. Application Name :Npgsql
  5529. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5530. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5531. --- End of stack trace from previous location where exception was thrown ---
  5532. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5533. --- End of stack trace from previous location where exception was thrown ---
  5534. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5535. --- End of stack trace from previous location where exception was thrown ---
  5536. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5537. at Npgsql.NpgsqlDataReader.NextResult()
  5538. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5539. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5540. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5541. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5542. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5543. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5544. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5545. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5546. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5547. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5548. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5549. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5550. ------------------------Error Log End----------------------------
  5551. ------------------------Error Log start----------------------------
  5552. Date:-26-02-2026 11:13:53
  5553. Application Name :Npgsql
  5554. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5555. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5556. --- End of stack trace from previous location where exception was thrown ---
  5557. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5558. --- End of stack trace from previous location where exception was thrown ---
  5559. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5560. --- End of stack trace from previous location where exception was thrown ---
  5561. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5562. at Npgsql.NpgsqlDataReader.NextResult()
  5563. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5564. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5565. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5566. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5567. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5568. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5569. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5570. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5571. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5572. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5573. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5574. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5575. ------------------------Error Log End----------------------------
  5576. ------------------------Error Log start----------------------------
  5577. Date:-27-02-2026 11:06:19
  5578. Application Name :Npgsql
  5579. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5580. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5581. --- End of stack trace from previous location where exception was thrown ---
  5582. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5583. --- End of stack trace from previous location where exception was thrown ---
  5584. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5585. --- End of stack trace from previous location where exception was thrown ---
  5586. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5587. at Npgsql.NpgsqlDataReader.NextResult()
  5588. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5589. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5590. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5591. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5592. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5593. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5594. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5595. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5596. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5597. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5598. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5599. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5600. ------------------------Error Log End----------------------------
  5601. ------------------------Error Log start----------------------------
  5602. Date:-27-02-2026 20:41:01
  5603. Application Name :Npgsql
  5604. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5605. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5606. --- End of stack trace from previous location where exception was thrown ---
  5607. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5608. --- End of stack trace from previous location where exception was thrown ---
  5609. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5610. --- End of stack trace from previous location where exception was thrown ---
  5611. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5612. at Npgsql.NpgsqlDataReader.NextResult()
  5613. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5614. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5615. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5616. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5617. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5618. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5619. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5620. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5621. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5622. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5623. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5624. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5625. ------------------------Error Log End----------------------------
  5626. ------------------------Error Log start----------------------------
  5627. Date:-27-02-2026 20:52:40
  5628. Application Name :Npgsql
  5629. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5630. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5631. --- End of stack trace from previous location where exception was thrown ---
  5632. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5633. --- End of stack trace from previous location where exception was thrown ---
  5634. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5635. --- End of stack trace from previous location where exception was thrown ---
  5636. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5637. at Npgsql.NpgsqlDataReader.NextResult()
  5638. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5639. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5640. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5641. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5642. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5643. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5644. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5645. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5646. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5647. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5648. ------------------------Error Log End----------------------------
  5649. ------------------------Error Log start----------------------------
  5650. Date:-27-02-2026 20:56:21
  5651. Application Name :Npgsql
  5652. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5653. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5654. --- End of stack trace from previous location where exception was thrown ---
  5655. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5656. --- End of stack trace from previous location where exception was thrown ---
  5657. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5658. --- End of stack trace from previous location where exception was thrown ---
  5659. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5660. at Npgsql.NpgsqlDataReader.NextResult()
  5661. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5662. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5663. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5664. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5665. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5666. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5667. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5668. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5669. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5670. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5671. ------------------------Error Log End----------------------------
  5672. ------------------------Error Log start----------------------------
  5673. Date:-27-02-2026 20:59:04
  5674. Application Name :Npgsql
  5675. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5676. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5677. --- End of stack trace from previous location where exception was thrown ---
  5678. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5679. --- End of stack trace from previous location where exception was thrown ---
  5680. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5681. --- End of stack trace from previous location where exception was thrown ---
  5682. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5683. at Npgsql.NpgsqlDataReader.NextResult()
  5684. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5685. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5686. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5687. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5688. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5689. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5690. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5691. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5692. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5693. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5694. ------------------------Error Log End----------------------------
  5695. ------------------------Error Log start----------------------------
  5696. Date:-27-02-2026 21:01:30
  5697. Application Name :Npgsql
  5698. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5699. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5700. --- End of stack trace from previous location where exception was thrown ---
  5701. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5702. --- End of stack trace from previous location where exception was thrown ---
  5703. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5704. --- End of stack trace from previous location where exception was thrown ---
  5705. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5706. at Npgsql.NpgsqlDataReader.NextResult()
  5707. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5708. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5709. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5710. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5711. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5712. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5713. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5714. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5715. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5716. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5717. ------------------------Error Log End----------------------------
  5718. ------------------------Error Log start----------------------------
  5719. Date:-27-02-2026 21:06:59
  5720. Application Name :Npgsql
  5721. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5722. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5723. --- End of stack trace from previous location where exception was thrown ---
  5724. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5725. --- End of stack trace from previous location where exception was thrown ---
  5726. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5727. --- End of stack trace from previous location where exception was thrown ---
  5728. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5729. at Npgsql.NpgsqlDataReader.NextResult()
  5730. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5731. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5732. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5733. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5734. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5735. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5736. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5737. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5738. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5739. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5740. ------------------------Error Log End----------------------------
  5741. ------------------------Error Log start----------------------------
  5742. Date:-27-02-2026 21:10:59
  5743. Application Name :Npgsql
  5744. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5745. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5746. --- End of stack trace from previous location where exception was thrown ---
  5747. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5748. --- End of stack trace from previous location where exception was thrown ---
  5749. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5750. --- End of stack trace from previous location where exception was thrown ---
  5751. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5752. at Npgsql.NpgsqlDataReader.NextResult()
  5753. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5754. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5755. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5756. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5757. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5758. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5759. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5760. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5761. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5762. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5763. ------------------------Error Log End----------------------------
  5764. ------------------------Error Log start----------------------------
  5765. Date:-27-02-2026 21:11:06
  5766. Application Name :Npgsql
  5767. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5768. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5769. --- End of stack trace from previous location where exception was thrown ---
  5770. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5771. --- End of stack trace from previous location where exception was thrown ---
  5772. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5773. --- End of stack trace from previous location where exception was thrown ---
  5774. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5775. at Npgsql.NpgsqlDataReader.NextResult()
  5776. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5777. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5778. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5779. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5780. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5781. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5782. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5783. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5784. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5785. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5786. ------------------------Error Log End----------------------------
  5787. ------------------------Error Log start----------------------------
  5788. Date:-28-02-2026 11:43:39
  5789. Application Name :Npgsql
  5790. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5791. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5792. --- End of stack trace from previous location where exception was thrown ---
  5793. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5794. --- End of stack trace from previous location where exception was thrown ---
  5795. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5796. --- End of stack trace from previous location where exception was thrown ---
  5797. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5798. at Npgsql.NpgsqlDataReader.NextResult()
  5799. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5800. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5801. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5802. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5803. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5804. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5805. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5806. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5807. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5808. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5809. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5810. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5811. ------------------------Error Log End----------------------------
  5812. ------------------------Error Log start----------------------------
  5813. Date:-28-02-2026 14:12:54
  5814. Application Name :Npgsql
  5815. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5816. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5817. --- End of stack trace from previous location where exception was thrown ---
  5818. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5819. --- End of stack trace from previous location where exception was thrown ---
  5820. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5821. --- End of stack trace from previous location where exception was thrown ---
  5822. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5823. at Npgsql.NpgsqlDataReader.NextResult()
  5824. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5825. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5826. at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
  5827. at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
  5828. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1051
  5829. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5830. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5831. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5832. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5833. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5834. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5835. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5836. ------------------------Error Log End----------------------------
  5837. ------------------------Error Log start----------------------------
  5838. Date:-28-02-2026 15:21:09
  5839. Application Name :Npgsql
  5840. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5841. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5842. --- End of stack trace from previous location where exception was thrown ---
  5843. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5844. --- End of stack trace from previous location where exception was thrown ---
  5845. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5846. --- End of stack trace from previous location where exception was thrown ---
  5847. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5848. at Npgsql.NpgsqlDataReader.NextResult()
  5849. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5850. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5851. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5852. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5853. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5854. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5855. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5856. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5857. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5858. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5859. ------------------------Error Log End----------------------------
  5860. ------------------------Error Log start----------------------------
  5861. Date:-28-02-2026 15:21:10
  5862. Application Name :Npgsql
  5863. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5864. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5865. --- End of stack trace from previous location where exception was thrown ---
  5866. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5867. --- End of stack trace from previous location where exception was thrown ---
  5868. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5869. --- End of stack trace from previous location where exception was thrown ---
  5870. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5871. at Npgsql.NpgsqlDataReader.NextResult()
  5872. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5873. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5874. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5875. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5876. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5877. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5878. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5879. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5880. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5881. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5882. ------------------------Error Log End----------------------------
  5883. ------------------------Error Log start----------------------------
  5884. Date:-28-02-2026 16:16:40
  5885. Application Name :Npgsql
  5886. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5887. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5888. --- End of stack trace from previous location where exception was thrown ---
  5889. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5890. --- End of stack trace from previous location where exception was thrown ---
  5891. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5892. --- End of stack trace from previous location where exception was thrown ---
  5893. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5894. at Npgsql.NpgsqlDataReader.NextResult()
  5895. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5896. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5897. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5898. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5899. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5900. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5901. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5902. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5903. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5904. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5905. ------------------------Error Log End----------------------------
  5906. ------------------------Error Log start----------------------------
  5907. Date:-28-02-2026 16:17:04
  5908. Application Name :Npgsql
  5909. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5910. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5911. --- End of stack trace from previous location where exception was thrown ---
  5912. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5913. --- End of stack trace from previous location where exception was thrown ---
  5914. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5915. --- End of stack trace from previous location where exception was thrown ---
  5916. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5917. at Npgsql.NpgsqlDataReader.NextResult()
  5918. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5919. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5920. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5921. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5922. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5923. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5924. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5925. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5926. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5927. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5928. ------------------------Error Log End----------------------------
  5929. ------------------------Error Log start----------------------------
  5930. Date:-28-02-2026 16:17:27
  5931. Application Name :Npgsql
  5932. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5933. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5934. --- End of stack trace from previous location where exception was thrown ---
  5935. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5936. --- End of stack trace from previous location where exception was thrown ---
  5937. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5938. --- End of stack trace from previous location where exception was thrown ---
  5939. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5940. at Npgsql.NpgsqlDataReader.NextResult()
  5941. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5942. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5943. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5944. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5945. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5946. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5947. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5948. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5949. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5950. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5951. ------------------------Error Log End----------------------------
  5952. ------------------------Error Log start----------------------------
  5953. Date:-28-02-2026 16:24:27
  5954. Application Name :Npgsql
  5955. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5956. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5957. --- End of stack trace from previous location where exception was thrown ---
  5958. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5959. --- End of stack trace from previous location where exception was thrown ---
  5960. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5961. --- End of stack trace from previous location where exception was thrown ---
  5962. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5963. at Npgsql.NpgsqlDataReader.NextResult()
  5964. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5965. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5966. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5967. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5968. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5969. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5970. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5971. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  5972. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  5973. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  5974. ------------------------Error Log End----------------------------
  5975. ------------------------Error Log start----------------------------
  5976. Date:-28-02-2026 17:23:51
  5977. Application Name :Npgsql
  5978. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  5979. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5980. --- End of stack trace from previous location where exception was thrown ---
  5981. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  5982. --- End of stack trace from previous location where exception was thrown ---
  5983. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  5984. --- End of stack trace from previous location where exception was thrown ---
  5985. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  5986. at Npgsql.NpgsqlDataReader.NextResult()
  5987. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  5988. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  5989. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  5990. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  5991. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  5992. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  5993. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  5994. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  5995. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  5996. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  5997. ------------------------Error Log End----------------------------
  5998. ------------------------Error Log start----------------------------
  5999. Date:-28-02-2026 17:26:26
  6000. Application Name :Npgsql
  6001. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  6002. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  6003. --- End of stack trace from previous location where exception was thrown ---
  6004. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  6005. --- End of stack trace from previous location where exception was thrown ---
  6006. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  6007. --- End of stack trace from previous location where exception was thrown ---
  6008. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  6009. at Npgsql.NpgsqlDataReader.NextResult()
  6010. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  6011. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  6012. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  6013. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  6014. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  6015. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  6016. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  6017. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring)
  6018. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data)
  6019. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data)
  6020. ------------------------Error Log End----------------------------
  6021. ------------------------Error Log start----------------------------
  6022. Date:-28-02-2026 19:37:49
  6023. Application Name :Npgsql
  6024. Error Message :22P02: invalid input syntax for type bigint: "NaN"
  6025. Method Name : at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  6026. --- End of stack trace from previous location where exception was thrown ---
  6027. at Npgsql.NpgsqlConnector.<>c__DisplayClass160_0.<<DoReadMessage>g__ReadMessageLong|0>d.MoveNext()
  6028. --- End of stack trace from previous location where exception was thrown ---
  6029. at Npgsql.NpgsqlDataReader.<>c__DisplayClass41_0.<<ReadMessage>g__ReadMessageSequential|0>d.MoveNext()
  6030. --- End of stack trace from previous location where exception was thrown ---
  6031. at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming)
  6032. at Npgsql.NpgsqlDataReader.NextResult()
  6033. at Npgsql.NpgsqlCommand.ExecuteReaderAsync(CommandBehavior behavior, Boolean async, CancellationToken cancellationToken)
  6034. at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior)
  6035. at Dapper.SqlMapper.ExecuteReaderWithFlagsFallback(IDbCommand cmd, Boolean wasClosed, CommandBehavior behavior) in C:\projects\dapper\Dapper\SqlMapper.cs:line 1060
  6036. at Dapper.SqlMapper.QueryImpl[T](IDbConnection cnn, CommandDefinition command, Type effectiveType)+MoveNext() in C:\projects\dapper\Dapper\SqlMapper.cs:line 1079
  6037. at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
  6038. at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
  6039. at Dapper.SqlMapper.Query[T](IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Boolean buffered, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 721
  6040. at WK_KLI_LAPS_COMMONTOOL_Service.App_Data.CommonRepository.ExecuteSP_ReturnListwithoutmode(String spname, String inputjsonstring) in D:\UpdatedCode\commontool\Service\Service\App_Data\CommonRepository.cs:line 158
  6041. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaService.usrstagemove(Object data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaService.cs:line 50
  6042. at WK_KLI_LAPS_COMMONTOOL_Service.Controllers.WorkArea.WorkAreaApiController.usrstagemove(lottraninfo data) in D:\UpdatedCode\commontool\Service\Service\Controllers\WorkArea\WorkAreaApiController.cs:line 63
  6043. ------------------------Error Log End----------------------------