Loading ...

Angularjs Mouse Directives

Just short notice of AngularJS mouse directives: ngClick, ngDblClick, ngMousedown, ngMouseEnter, ngMouseLeave, ngMousemove, ngMouseover, ngMouseup Ready to take your Acumatica experience to the next level? Just like AngularJS mouse directives—ngClick, ngDblClick, and more—empower seamless us...

How To Clean Plan Query Cache

Hello everybody, some sql notes: dbcc freeproccache; this one will clean plan of cached of sql.   Another note of how to find Sql code and plan by id from dm_exec_cached_plans create function SqlAndPlan(@handle varbinary(max)) returns table as return select sql.text, cp.usecounts,cp.cac...

MOQ And Unit Test

Hello everybody, today I want to write few words about Moq and unit testing.  First of all you can have a question, why do I need Moq at all? Moq is especially useful for cases if we don't have desire to code interface, then code implementation of interface, and then code fake implementation...