.net调用存储过程碰到的一个问题

问题描述

报错信息如下:

Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option.

解决办法

use dasolPSDev;

EXEC sp_configure 'clr enabled', 1
 go
 RECONFIGURE
 go
EXEC sp_configure 'clr enabled'
 go
原文地址:https://www.cnblogs.com/mcgrady/p/4800384.html