Created
September 29, 2015 13:57
-
-
Save f1code/58d558dc6403feab0ac5 to your computer and use it in GitHub Desktop.
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 characters
| // With Count | |
| var count = sess.QueryOver<ITicket>() | |
| .Where(x => (x.SentBundle == false || x.SentBundle == null) | |
| && x.ScheduledDate >= startDate && x.ScheduledDate <= endDate && | |
| (string)x.Contact.Id == (string)contact.Id) | |
| .Select(Projections.Count("Id")) | |
| .SingleOrDefault<int>(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment