01 2019 档案
摘要:msdn叙述:The SortedDictionary<TKey, TValue> generic class is a binary search tree with O(log n) retrieval, where n is the number of elements in the dict
阅读全文
摘要:ef core设置可选外键,有如下几种方式:1、在依赖实体AAA中,并不显式设置外键属性XXXId 2、手动设置外键属性XXXId为可空类型(int?等类型) 3、在实体类与数据表进行映射时,配置狭隘属性的方式配置可选外键builder.Property<int?>("XXXId") 4、可以在依赖
阅读全文
摘要:希望现在学习Orleans不会晚,毕竟Server Fabric都开源了。本篇博客从Sample的HelloWorld示例程序来解读Orleans的Grains。 Server配置参考 : https://dotnet.github.io/orleans/Documentation/clusters
阅读全文