pjy612

Results 23 comments of pjy612

这个好像是小黑屋了,403频繁是另外一种提示,另外pk的小黑屋停止job貌似没加到黑屋验证列表里。

估计是想说20以上的 不自动送礼物,20以上都要氪金,普通礼物除了小心心点亮外送了浪费。

\_(:з」∠)\_ 现在瓜子多 感觉可以有的说。。。不过银瓜子现在都不知道能干点啥。。。

try this ```C# repo.Query().Include(o => o.Roles.Select(r => r.Contact)).ToList() //or repo.Query().Include("MAP($.Roles[*]=>@.Contact)").ToList(); repo.Query().Include("$.Roles[*].Contact").ToList(); ```

maybe you need try ``` BsonMapper.Global .Entity() .Ctor(document => new SomeClass(document["Id"].AsGuid, document["Value"].AsInt32)) .Id(x => x.Id, autoId: false) .Field(x => x.Id, "Id") ```

i doesn't seem to reproduce the problem ![image](https://user-images.githubusercontent.com/4072526/190121340-c1955310-1b20-4d2e-9be8-324e83e38840.png)

it maybe work fine in 5.0.12... ![image](https://user-images.githubusercontent.com/4072526/190962464-8d05343b-9e47-4915-97d9-1dda2863949b.png)

确实,一般出现在网络波动的时候,不确定是网络不好断开了还是别的原因。。。感觉如果网络断开的话,能等待重连比较好。。。

SSR 别开全局,加浏览器插件 针对性的 去使用代理

yes... [LiteDB/Utils/Extensions/StringExtensions.cs](https://github.com/mbdavid/LiteDB/blob/a930df176be1fb6d172aa3de853c824e2638923b/LiteDB/Utils/Extensions/StringExtensions.cs) ``` "aaacaaaacaaaaaccaaacaaaacaaaaaccaa".SqlLike("%aaacc%aaacc%") //retrun false "001".SqlLike("%01%") //retrun false ``` need fix that