U-SQL - is it possible to reference a registered assembly from a file with code

Registered assemblies can be used in u-SQL script files using ASSEMBLY REFERENCE. Is it possible to reference a registered assembly in C # code behind a file?

+3


source to share


1 answer


You will need to have an assembly interface to build a local assembly, which will be generated from the code file. You can download the assembly from cloud / server explorer in VisualStudio if you don't have one.



And you will need the REFERENCE ASSEMBLY statement for the database registered in the U-SQL database in the U-SQL script to ensure that the assembly is available when your script is executed.

+1


source







All Articles