摘要: CapSupport 是在CAP的操作上做了一些封装 目的是让事务同时执行或者同时回滚 startup Controller01 Controller02 Controller03 他可以在执行第一个事务中执行另一个事务,并且在另一个事务执行完毕后决定第一个事务是否成功 可以等待一个订阅完成 NUG 阅读全文
posted @ 2018-11-25 21:57 AnAng 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 这一章非常简单 只要照着官方文档做就行了 文档地址 打好NUGET包后 Sql脚本是在项目下的OrleansAdoNetContent 阅读全文
posted @ 2018-11-13 11:45 AnAng 阅读(925) 评论(0) 推荐(1) 编辑
摘要: Goods 服务 启动 截图 Goods服务 Order服务 GitHub地址: Demo下载 阅读全文
posted @ 2018-11-06 15:42 AnAng 阅读(2124) 评论(0) 推荐(0) 编辑
摘要: 1、序列化 序列化配置有几个坑这里a56爆大奖在线娱乐写出来 2、负载均衡 3、定时器与提醒 4、服务启动执行代码 5、监控 序列化 新建实体类 引用的包 Microsoft.Orleans.Core V2.12 Microsoft.Orleans.OrleansCodeGenerator.Build V2.12 M 阅读全文
posted @ 2018-11-04 12:53 AnAng 阅读(1134) 评论(0) 推荐(0) 编辑
摘要: Orleans的入门教程 官方Hello World 地址 https://github.com/dotnet/orleans/tree/master/Samples/2.0/HelloWorld Doc地址 http://dotnet.github.io/orleans/Documentation 阅读全文
posted @ 2018-11-01 22:01 AnAng 阅读(1863) 评论(0) 推荐(0) 编辑
摘要: Orleans非常好用 并且支持.net core 社区也非常活跃 Orleans2.0+在国内的教程偏少 多数是1.5版本的教程 在这里写上四篇Orleans教程 目录 1、Orleans的入门教程 2、Orleans的深入 3、Orleans在.net core的开发 4、Orleans的生产环 阅读全文
posted @ 2018-11-01 21:29 AnAng 阅读(2397) 评论(0) 推荐(0) 编辑
摘要: AddTransient、AddSingleton、AddScoped的区别 阅读全文
posted @ 2018-07-26 11:49 AnAng 阅读(16942) 评论(4) 推荐(4) 编辑
摘要: create login 【LoginMame】 with password=【Pwd】--创建数据库登陆用户 create user 【DBLoginName】 for login 【LoginMame】 with default_schema=dbo--创建数据库访问用户 use 【DBName 阅读全文
posted @ 2018-07-14 22:24 AnAng 阅读(182) 评论(0) 推荐(0) 编辑
摘要: using Chloe; using Chloe.Infrastructure; using Chloe.SqlServer; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Services... 阅读全文
posted @ 2018-07-10 22:00 AnAng 阅读(383) 评论(0) 推荐(0) 编辑
摘要: // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddMvc... 阅读全文
posted @ 2018-06-20 14:57 AnAng 阅读(1932) 评论(0) 推荐(0) 编辑