LeaFrock
LeaFrock
Any progress? Or may I commit a PR?
Any progress? Now I don't know how to achieve first line indentation of paragraph.
> Paragraph first line indentation is available from the 2024.3.X release. I am currently writing documentation for this feature. I've found the [related PR](https://github.com/QuestPDF/QuestPDF/pull/891), but the feature has not been...
@hjkl950217 我在最初使用FreeSql时也提过类似的issue哈哈哈,API设计跟EF Core不太一样,适应就好了。 至于类型的问题,常用的整型可以直接在表达式内转换: ```csharp t => new SubmiterData { Count_Planed = (int)t.Sum(t.Value.Status == "已规划" ? 1 : 0), }) ``` double等类型若不支持(运行时会类型转换异常)的话,FreeSQL支持使用Convert函数: ```csharp t => new SubmiterData { Count_Planed =...
> 只是说从表达含义上面, 用Sum去干Count的事很奇怪的。 这个要看SQL习惯,按条件数数,本质上是按条件求和问题的”子集',所以使用Sum其实也没啥问题,只是大部分人用ORM都是从EF Core及LINQ to Sql开始的,习惯了Count语法优先。 `t.Sum(t.Value.Status == "已规划" ? 1 : 0)` 翻译成 `sum(case when a.Status = '已规划' then 1 else 0 end)`,C#代码上看有点不够自然,但从SQL上看不违和的。
I‘m wondering if MudBlazor can work well with this library. I'm stuck in these 2 errors and find no doc available 😞 .  I create a mini-repo [here](https://github.com/LeaFrock/LeaFLib.BrowserExt).
I suggest you deploy it as a single website. It's just a normal ASP.NET Core, which means you just need to config the app settings, as same as what other...
It should be the problem of your docker config which lacks chinese fonts (and maybe this [cnblog](https://www.cnblogs.com/bill89/p/13987266.html) can help), rather than this library.
目前只支持Github么……
> I'm also experimenting with Scottplot + NET9 Blazor Wasm. On my end, it works fine with SkiaSharp 3.116.1, just there is no interaction. @mennowo `UserInputProcessor.Enable()` doesn't work too after...