Shawn Clabough
Member since Mar 25, 2016
- Profile: /members/13122-shawn-clabough.htm
- Comments: 2
Recent Blog Comments By Shawn Clabough
-
My First - And Possibly Last - Look At Reactive Forms In Angular 7.2.13
Posted on Apr 24, 2019 at 4:25 PM
@Brian, *ngFor gets transformed to ng-template and ngFor , so he's just doing it manually. ` <div *ngFor="let hero of heroes; let i=index; let odd=odd; trackBy: trackById" [class.odd]="odd"> ({{i}}) {{hero.name}} <ng-template ngFor let-hero [ngFor... read more »
-
Putting DEBUG Comments In Your SQL Statements Makes Debugging Performance Problems Easier
Posted on Mar 25, 2016 at 3:51 PM
A downside is that if you use the same query, but with a different "DEBUG" comment, you'll create a different plan cache and possibly a different execution plan with each different command - which could create memory issues. I wish SQL Server would strip out comments before analyzing, but ... read more »