AzureTicker.Worker.Model.Repositories.NotificationRepository.GetNotificationsToSend C# (CSharp) Method

GetNotificationsToSend() public method

public GetNotificationsToSend ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Notification> GetNotificationsToSend()
        {
            return (from n in context.CreateQuery<Notification>(tableName) select n).AsTableServiceQuery<Notification>().Where(n => (n.BalanceString != "New")).AsEnumerable();
        }