Skip to content

Instantly share code, notes, and snippets.

View mochyusup's full-sized avatar

Moch Yusup Soleh mochyusup

  • Quartex
  • Perth
View GitHub Profile
@mochyusup
mochyusup / gist:a8af93297934c8e4b5fe
Created September 26, 2014 03:09
Gets the property value from Profile table used in ASP.NET Membership system
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[GetProfilePropertyValue]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))
DROP FUNCTION [dbo].[GetProfilePropertyValue]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Create date: 14/08/2014