コード例 #1
0
ファイル: ValuesController.cs プロジェクト: CooBeeDior/JwSale
        public ValuesController(IJwSaleRepository <RoleInfo> jwSaleRepository, JwSaleDbContext context)
        {
            //IServiceCollection serviceCollection = null;
            //   var aaaa = serviceCollection.GetServices(typeof(IUnitOfWork<>));
            var sss = jwSaleRepository.Filter(o => o.Name != "").FirstOrDefault();

            sss.Name = "fafwafaffffffffffffff";
            jwSaleRepository.Update(sss);

            string url1 = string.Empty;
            string url2 = string.Empty;

            using (MiniProfiler.Current.Step("Get方法"))
            {
                using (MiniProfiler.Current.Step("准备数据"))
                {
                    using (MiniProfiler.Current.CustomTiming("SQL", "SELECT * FROM Config"))
                    {
                        // 模拟一个SQL查询
                        Thread.Sleep(500);

                        url1 = "https://www.baidu.com";
                        url2 = "https://www.sina.com.cn/";
                    }
                }


                using (MiniProfiler.Current.Step("使用从数据库中查询的数据,进行Http请求"))
                {
                    using (MiniProfiler.Current.CustomTiming("HTTP", "GET " + url1))
                    {
                        var client = new WebClient();
                        var reply  = client.DownloadString(url1);
                    }

                    using (MiniProfiler.Current.CustomTiming("HTTP", "GET " + url2))
                    {
                        var client = new WebClient();
                        var reply  = client.DownloadString(url2);
                    }
                }
            }
        }
コード例 #2
0
 public JwSaleRepository(JwSaleDbContext dbContext) : base(dbContext)
 {
 }