第03章 ASP.NET 5 :讀寫資料庫連接字串

來源:互聯網
上載者:User

標籤:

 

1.概述

    ASP.NET 5模板項目設定檔採用了JSON格式,你依然可以採用以前的xml格式。C#對web.config或app.config讀寫及加密有一個專門的類,使用起來很方便。

    到了使用config.json來配置資訊,c#是不是又準備好一個類? 哎!玩DotNet技術含量低,被java專家們瞧不起的原因,也許就在於這樣吧,微軟什麼都想幫大家寫好,你只需要會用即可。

2.建立項目

    本例使用ASP.NET 5模板來建立控制台項目:

    

 3.設定檔

     在GiveCase.ConsoleApps項目根目錄添加config.json,其代碼:  

{  "Data": {    "MSSqlConnection": {      "ConnectionString": "Server=(localdb)\\mssqllocaldb;Database=TestDB;Trusted_Connection=True;MultipleActiveResultSets=true"    }  }/*,    "EntityFramework": {        "EFContext": {            "ConnectionString": "Data:MSSqlConnection:ConnectionString"        }    }*/}

    註: json的key按照"data->MSSqlConnection->ConnectionString"來找values!

4.引用

     開啟project.json,添加:

    

5.代碼實現

    下面分別讀取了修改前和修改後的輸出:

using Microsoft.Framework.ConfigurationModel;using System;namespace GiveCase.ConsoleApps{    public class Program    {        public IConfiguration Configuration { get; set; }        public void Main(string[] args)        {            #region 01 讀寫資料庫連接串            Configuration = new Configuration().AddJsonFile("config.json");            string strKey = "Data:MSSqlConnection:ConnectionString";            string connStr = Configuration.Get(strKey);            //修改前讀取            Console.WriteLine(connStr);            Configuration.Set(strKey, "Server=.; Database=GiveCaseTestDB;UID=sa;PWD=123456");            Configuration.Commit();            connStr = Configuration.Get(strKey);            //修改後讀取            Console.WriteLine(connStr);            #endregion                        Console.ReadLine();        }    }}

     運行結果:

    

     再看config.json代碼:

    

     OK!可以修改成功!

6.小結

    上面示範讀寫,如果你想寫入時加密字串,讀取再程式解密,你另行“研究”了!

   (註:本篇內容少,希望對你所有協助!後面的系列博文也是每一個知識點就發表一篇文章!)

  

第03章 ASP.NET 5 :讀寫資料庫連接字串

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.