jgrass

Results 129 comments of jgrass

如果你是想快速搜索的话,可以打开这个设置 ![image](https://github.com/user-attachments/assets/d4a77f30-7e7b-4025-b058-65a9bc2d88be)

分组是可以多选的, 将情景模式多选,有点跟这个功能的原意偏离了 暂时先搁置吧

Thank you for the reminder, your understanding is correct. “this is meant to hide extensions that appear in any other group” However, it is unclear what exactly has happened here...

这个太难调试了,不知道为什么 狐猴 不支持。 可以将显示模式设置成 grid,可以显示得多一点。 或者我发现双指放大之后,就可以拖动到最下面了。 ![image](https://github.com/user-attachments/assets/df11f256-cb44-4c34-8908-5cb633a3d428)

谢谢你的反馈,我会在后续的开发中考虑怎么优化。 当前,你可以使用搜索,以及通过鼠标 hover 的方式来查看扩展的完整名称。 > 如果将显示样式从 Grid 的方式切换成 List 的方式,会让 List 非常长,感觉不是很好找到想要的扩展。或许可以使用多列的方式?(顺便显示别名和备注) --- Thank you for your feedback! I’ll consider how to optimize this in future development. Currently, you can...

A brief addition As a temporary solution, you can use `csharpier-ignore` to temporarily ignore the automatic formatting for the next line. ```cs // csharpier-ignore var result = list .Where(x =>...

My initial requirements and related ideas ### Initial Requirements: 1 Mapster should only assist me in automatically handling property mappings that have exactly the same name and type. 2 If...

Thank you for your detailed and patient response. As it stands, there doesn't seem to be a particularly elegant way to intercept the "same name but different types" situation. I...

> (Sourse.Adapt()) will cause an error? I tend to throw an error because this is indeed a confusing operation. There's a possibility that the user intends to clone an object...

```cs public class Source783 { public MyString MyProperty { get; set; } = new (); } public class Destination783 { public MyString MyProperty { get; set; } = new ();...