BugNET

Open source issue tracking & project management

Forums

HomeHomeSupportSupportGeneral SupportGeneral Supportissue create bugissue create bug
Previous
 
Next
New Post
9/1/2010 4:41 PM
 
  1. Open Microsoft SQL Server Management Studio on your database server or local machine and connect to the database.
  2. Right click on the database and select new query
  3. Paste the code below
  4. Execute the query.
	ALTER PROCEDURE [dbo].[BugNet_ProjectMilestones_GetMilestonesByProjectId]
@ProjectId INT,
@MilestoneCompleted bit
AS
SELECT * FROM BugNet_ProjectMilestones WHERE ProjectId = @ProjectId AND 
MilestoneCompleted = (CASE WHEN  @MilestoneCompleted = 1 THEN MilestoneCompleted ELSE @MilestoneCompleted END) ORDER BY SortOrder ASC
GO
	

Davin Dubeau

follow us on twitter facebook users group google plus
 
New Post
9/1/2010 9:16 PM
 

You rock! That fixed it - thanks!!!

 
Previous
 
Next
HomeHomeSupportSupportGeneral SupportGeneral Supportissue create bugissue create bug


Forum Policy

These Discussion Forums are dedicated to the discussion of the BugNET issue tracker.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:
1. No Advertising.
2. No Flaming or Trolling.
3. No Profanity, Racism, or Prejudice.
4. Site Moderators have the final word on approving/removing a thread or post or comment.
5. English language posting only, please.