MarGraz

Results 17 comments of MarGraz

The issue starts with creating a new blank "ASP.NET Core Web Application" in VS 2022 using the [manual method](https://docs.orchardcore.net/en/main/docs/getting-started/templates/#from-visual-studio-manual-way). This process, unlike the [automated template](https://docs.orchardcore.net/en/main/docs/getting-started/templates/#from-command-shell-automated-way), results in Visual Studio automatically...

@MikeAlhayek ok, I have just two questions: - Regarding [this comment](https://github.com/OrchardCMS/OrchardCore/issues/15267#issuecomment-1932152014) I posted, which library is the correct one to be used? - Where in the documentation is the "manual...

@hishamco thank you for your reply. I want to expose some properties from this [User model](https://github.com/OrchardCMS/OrchardCore/blob/main/src/OrchardCore/OrchardCore.Users.Core/Models/User.cs), like: `Username`, `Email`, `IsEnabled`, `IsLockoutEnabled`, `RoleNames`. I want to use it in a Orchard...

Yes I know, but I want to use it in a "Workflow", and I'm still not able to do it creating a "Query" ([here the discussion](https://github.com/OrchardCMS/OrchardCore/discussions/15373)), so I think the...

@hishamco, Piedone replied to me [here](https://github.com/OrchardCMS/OrchardCore/discussions/15373#discussioncomment-8611401), confirming that it's possible to perform queries against the `UserIndex` table. This means I can use the saved query in the "Workflow". Thank you

Oh, I'm sorry 😟 I believe Zoltan's response is fine. Of course, if I need to expose a User API endpoint, I will create a custom API controller and follow...