hatzhang
hatzhang
How is it going now?
The request behaves that way, because of wrong url had been feeded to front end. In the following method of `AsyncApiUiMiddleware`, `asyncApiDocumentUrl` is given the value of `"/m-module/%7Bdocument%7D/asynciapi/asyncapi.json"`, thus frontend...
I am using net6. And all settings should be good. If i fix those two methods, it will work. Or it shows that error.
We are using Winform as frontend, and aspnetcore/corewcf as backend, they are talking through wcf/corewcf. And we run the backend in linux server/container, and we want to host click-once server...
根据我使用的经验,这个错会在连接一个不存在的库时出现。如以下连接串 ``` host=localhost;port=4321;database=TestAAA;user id=system;password=123456; ``` 如果TestAAA不存在,就会报这个错。倒不是说postgres这个库不存在。 在使用SqlServer的EFCore时,库不存在会主动创建。不知道Kingbase这个能不能也这样?
想试着重现,但没有成功。 目前项目上的临时解决办法是用`.ToString().Substring(0, 4)` 换掉了Year, `ToString().Substring(5, 2)` 换掉了 Month
我在我的fork上推送了一个提交,来重现此问题。 概略如下:在测试项目中的Blog中添加新的enum属性 ```cs [Table("blogs")] public class Blog { [Key] [Column("id")] public int Id { get; set; } [Column("name")] public string Name { get; set; } public BlogType BlogType { get;...
@wangpengxpy @alexinea @JaneConan 你们可以用我提交的测试案例复现这个问题吗? 如果要修正,应该从哪个方向着手?