Created
April 21, 2014 04:47
-
-
Save chandermani/11132531 to your computer and use it in GitHub Desktop.
Revisions
-
chandermani revised this gist
Apr 21, 2014 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ var planEmployees = this.DB .Query<Xhr.Data.Model.EmployeeLeavePlanView>("WHERE LeavePlanId=@0", p.Id) .ToList(); //Did a ToList() to realize this query // Same as it was earlier -
chandermani created this gist
Apr 21, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ //Did a ToList() to realize this query var planEmployees = this.DB.Query<Xhr.Data.Model.EmployeeLeavePlanView>("WHERE LeavePlanId=@0", p.Id).ToList(); // Same as it was earlier