0
我有這個用戶自定義函數。用戶自定義函數
public partial class UserDefinedFunctions
{
static int i;
[SqlFunction(IsDeterministic = true)]
public static SqlSingle f()
{
return new SqlSingle(1.3F);
}
};
但它只適用於i
是隻讀的。爲什麼?