USQL 使用用户定义的数据类型列创建用户定义的 table 类型

USQL create user defined table type with user defined data type columns

我将用户定义类型定义为

namespace AddOns{
[SqlUserDefinedType(typeof(JsonObjectFormatter))]
    public class JsonObject
    {
        public string Value {get;set;}
        ... // this is just a dummy representation 
    }
}

我想定义一个Table值函数,return是一个数据类型

REFERENCE ASSEMBLY [AddOns];

CREATE TYPE Insight.dbo.JsonRow
AS TABLE
(
        [Id] Guid,
        [Value] AddOns.JsonObject
);

但是我得到一个错误

'E_CSC_USER_INVALIDCOLUMNTYPE: 'AddOns.JsonObject' cannot be used as column type.
Description:
The column type must be a supported scalar, complex or user defined type.
Resolution:
Ensure the column type is a supported type. For a user defined type, make sure the type is registered, the type name is fully qualified, and the required assembly is referenced by the script.'
*** Compile failed !

我已经在我的本地 ADLA 实例中注册了适当的 DLL,当我将数据保存到文件时,我能够访问过程 SELECT 语句中的类型。但不能 return 它作为 TVF return 类型

您在创建自定义类型时仅限于内置类型。来自 the MS documentation page(我粘贴的文字最后一行表示仅内置类型):

U-SQL 可以使用 CREATE TYPE 语句命名和注册 table 类型。

Create_Type_Statement :=                                                                                 
    'CREATE' 'TYPE' ['IF' 'NOT' 'EXISTS'] Type_Identifier   
    'AS' Anonymous_Table_Type.
Type_Identifier := 
    DB_Object_Identifier.

Anonymous_Table_Type :=  
    'TABLE' '(' Column_Definition_List ')'.

语法元素的语义

...

Column_Definition_List

定义 table 架构如下:

Column_Definition_List :=                                                                           
     Column_Definition { ',' Column_Definition }.

Column_Definition

列定义的格式为

Column_Definition :=    
    Quoted_or_Unquoted_Identifier Built_in_Type.