CREATE PROCEDURE [dbo].[Event_ReadPageByUserId] @UserId UNIQUEIDENTIFIER, @StartDate DATETIME2(7), @EndDate DATETIME2(7), @BeforeDate DATETIME2(7), @PageSize INT AS BEGIN SET NOCOUNT ON SELECT * FROM [dbo].[EventView] WHERE [Date] >= @StartDate AND (@BeforeDate IS NOT NULL OR [Date] <= @EndDate) AND (@BeforeDate IS NULL OR [Date] < @BeforeDate) AND [OrganizationId] IS NULL AND [ActingUserId] = @UserId ORDER BY [Date] DESC OFFSET 0 ROWS FETCH NEXT @PageSize ROWS ONLY END