LLBLGEN 3.5
SQL Server 2005
C# Windows Application
LLBLGEN Runtime Frame work
.NET framework 4.0
I created the following func on sql server
CREATE FUNCTION fncurrentdate
()
RETURNS varchar(30)
AS
BEGIN
declare @return varchar(30)
select @return =convert(varchar, getdate(), 22)
return @return
end
But when I refresh in LLBLGEN, this func does not appear in catalog designer. Any reason? since I need to use the func in LLBLGEN generated code