ptrushin

Results 6 comments of ptrushin

1. About the first API - https://www.jetbrains.com/help/youtrack/standalone/Create-New-Work-Item.html - I think that if WorkItem has a constructor with Author I can fill this field. I get 403 only if I fill...

> Can you also share the code for the corresponding controller action? ``` [HttpGet] [EnableQuery] public ActionResult Get() { return Ok(Db.Set().AsNoTracking()); } ```

I have the same error, when current dotnet version is 6 (dotnet --version in folder with file). When i add global.json like { "sdk": { "version": "7.0.400" } } all...

Yes i did, result was ```{"properties":{"ware":"ware1"}}``` but i want the result ```{"ware": "ware1"}``` without inner object properties

Thanks. I need second variant, because i dont know property name in compile time. But with your example i get an exception ``` System.InvalidOperationException: The EDM instance of type '[Main...

@xuzhg , example - https://github.com/ptrushin/odata-text 1) when /odata/$metadata - all ok 2) but when i try to get data - /odata/Main - i get an exception ```The EDM instance of...