在.Net中创建用户定义的CLR功能

时间:2011-11-08 18:52:45

标签: .net class-library sqlclr sql-function

我想创建一个CLR函数,我创建了一个普通的类库文件并编码如下,我不想使用SqlServerProject,因为我在那里找不到一些类。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SqlServer.Server;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Types;

    namespace ClassLibrary1
    {
        public partial class Class1
        {
            [Microsoft.SqlServer.Server.SqlFunction]
            public static SqlString GetPassword(SqlString Value)
            {
                return Value;
            }
        }
    }

我编译代码并从sqlserver创建程序集,如此

CREATE ASSEMBLY ASSEM
authorization dbo
FROM 'E:\NBM Sites\tvt.stage.asentechdev1.com\ClassLibrary1.dll' WITH PERMISSION_SET = SAFE;

并创建了如下函数

CREATE FUNCTION SampleFunc
(   
    @value nvarchar(max)
)
RETURNS nvarchar(max) with execute as caller
AS
    External Name ASSEM.Class1.GetPassword
GO

但是上面的创建函数引发了错误说法。

Could not find Type 'Class1' in assembly 'ClassLibrary1'.

我不明白,为什么class1不被识别,因为我也公开了。 请任何人帮助我。

1 个答案:

答案 0 :(得分:4)

您缺少类所在的命名空间(ClassLibrary1)。所以正确的create function语句是:

CREATE FUNCTION SampleFunc
(   
  @value nvarchar(max)
)
RETURNS nvarchar(max) with execute as caller
AS
  External Name [ASSEM].[ClassLibrary1.Class1].[GetPassword]
GO