Dotnet.Core
jiegemena
喜欢技术!
种瓜得果编程!
展开
-
netcore3 sqlite
net core3.1 EF + SQLitenuget 安装这3个包microsoft.EntityFrameworkCoreMicrosoft.EntityFrameworkCore.SqliteMicrosoft.EntityFrameworkCore.Toolsservices.AddDbContext<DBEntitys>(options => options.UseSqlite("Filename=web.db"));Add-Migration Initial原创 2020-06-19 16:32:53 · 919 阅读 · 0 评论 -
net core3.0 修改 web 端口
在 appsettings.json 中 添加配置“urls”: “http://*:10010”原创 2019-09-30 09:51:47 · 2996 阅读 · 1 评论 -
net core Ocelot 网关 初使用(2)- 搭配 consul 服务使用 Ocelot
搭配 consul 服务使用 Ocelot,自动路由配置新建webapi 项目,安装 nuget 包install-package Ocelot.Provider.Consulinstall-package Ocelot.Provider.PollyStartup.cs 修改using System;using System.Collections.Generic;us...原创 2019-06-17 12:28:57 · 869 阅读 · 1 评论 -
net core Ocelot 网关 初使用(1)
新建 net core webapi 项目安装 nuget 包```Install-Package Ocelot```配置添加一个Ocelot.json的文件用来添加Ocelot的配置转发 http://localhost:53743/jsmer => http://localhost:8088{"GlobalConfiguration": ...原创 2019-06-17 09:19:34 · 651 阅读 · 0 评论 -
dotnet core web IApplicationBuilder 中间件学习
dotnet core web IApplicationBuilder 中间件学习编写一个自己的中间件的模版public static class MyApp { public static IApplicationBuilder UserMyApp(this IApplicationBuilder app) { Func&l...原创 2018-07-05 10:41:58 · 3240 阅读 · 0 评论 -
dotnet core 使用传统Cookie
dotnet core 使用传统Cookie先在添加Cookie中间件 app.UseCookiePolicy();public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) {...原创 2018-06-26 15:01:52 · 1554 阅读 · 0 评论 -
列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第30位数是多少
列数的规则如下: 1、1、2、3、5、8、13、21、34…… 求第30位数是多少分析:从第二个数开始,每位等于前两个数相加递归: public static void Do() { int endnum = Foo(30); Console.WriteLine(endnum.ToString()); ...原创 2018-04-19 15:44:47 · 3554 阅读 · 0 评论 -
利用反射构造工厂
using System;using System.Reflection;namespace Reflex.factory{ class Program { static void Main(string[] args) { //普通工厂 Ikess fk1 = FactoryManage.fnGet原创 2017-11-23 15:58:31 · 248 阅读 · 0 评论 -
SQL,LINQ,Lambda 语法对照图
SQL,LINQ,Lambda 语法对照图转载 2017-11-20 14:03:30 · 441 阅读 · 0 评论 -
.net core 搭载在 iis上
官方文档: https://docs.microsoft.com/zh-cn/aspnet/core/publishing/iis?tabs=aspnetcore2x 点击打开链接原创 2017-11-13 09:55:44 · 227 阅读 · 0 评论 -
.net core 连接 mssql数据库
跟在 .net 里面一样的连接方法,只是不能自动添加引用 dll1、管理 nuget ,添加以下两个引用(重要)PM> Install-Package System.Data.CommonPM> Install-Package System.Data.SqlClient2、测试代码static void Main(string[]原创 2017-11-10 15:28:28 · 4117 阅读 · 0 评论 -
微软 dotnet.core 文档中文链接
https://docs.microsoft.com/zh-cn/aspnet/core/原创 2017-11-10 09:03:29 · 1125 阅读 · 0 评论