You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i used
configuration:
services.AddApiVersioning(option =>{
option.ReportApiVersions = true;
option.ApiVersionReader = new MediaTypeApiVersionReader("api-version");
option.AssumeDefaultVersionWhenUnspecified = true;
option.DefaultApiVersion = new ApiVersion(1,0);
});
but it throw Sequence contains no matching element!
why and How to deal with it?