WEBAPI报错:Attribute routes with the same name 'Get' must have the same template
电脑版发表于:2019/11/8 14:27
是因为 asp.net core 中默认创建的 api controller 中的 Get(id) Action的属性都是[HttpGet("{id}", Name = "Get")],后面这个Get就重复了,修改一下名称即可。
也就是如图,下面两个名字不能一样(默认创建的时候是一样的)
另外一个webapi需要修改一下名字: