프로덕션 릴리스를 설정 중이므로 포털에서 모든 새 서비스를 작성하는 중입니다. Azure 테이블을 만들 수있는 스토리지 계정을 만들기 위해 싸우고 있습니다. 현재 NLOG Azure Storage를 사용하고 있으며 필요한 경우 항상 테이블을 생성했습니다 (수동으로 삭제하면 응용 프로그램을 다시 실행하면 다시 생성됩니다). 내가 수동으로 내가 오류가 테이블을 만들려고하면Azure 포털에서 테이블 스토리지가 누락되었습니다.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(Configuration.AzureStorageConnectionString);
// Create the table client.
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
CloudTable table = tableClient.GetTableReference("TestTable");
// Create the CloudTable if it does not exist
bool test = table.CreateIfNotExists();
나는 테이블을 쉽게하지만없는 모양을 만들 수 있습니다 (아래 코드 참조). 이전 포털에서 차이가 나는 경우 이전 스토 리지 계정이 생성 되었습니까?
<add key="AzureStorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=productionhalostorage;AccountKey=abc;EndpointSuffix=core.windows.net"
xdt:Transform="Replace"
xdt:Locator="Match(key)" />
내가 우리 CONFIGS을 유지하기 위해 느린 치타를 사용하고있는 XDT의의를 무시 :
여기 내 설정이다.
오류를 공유 할 수 있습니까? – Aravind