Azure连接字符串不适用于tableAdapter

时间:2019-03-06 18:59:53

标签: sql sql-server azure connection adapter

我正在使用SQL表适配器的项目。当它尝试使用Azure使用的连接字符串时,它将失败。如何重构它以便在Azure中工作?

let toto = 1;
const acceptedValues = new Set([1, 12, 3, 4]);
console.log(acceptedValues.has(toto));
toto = 2;
console.log(acceptedValues.has(toto));
  

初始化字符串的格式不符合从索引0开始的规范。

.as-console {background-color:black !important; color:lime;}
.as-console-wrapper {max-height:100% !important; top:0;}

Azure在web.config文件中使用的此代码不能用于生成表适配器。

DbConnection conn = ((dynamic)tableAdapter).Connection;

如何解决这个问题?

0 个答案:

没有答案