ASP.NET Core app with Angular

When adding a new Web API controller in the ASP.NET Core app, we need to make sure to add this controller name in Angular proxy config file NOTE : when making the webapi call, controller name should match exact case-sensitive as listed in the proxy.conf.js file Here is the new web api controller [ApiController] [Route("[controller]")]... Continue Reading →

CosmosDB Queries

Search in all columns SELECT * FROM c where contains(ToString(c), "Hello, World") Escape Keyword (Value is a keyword) SELECT * FROM c where c['Value'] = "Hello, World" Search in array SELECT * FROM c WHERE EXISTS(SELECT * FROM t IN c.Tags WHERE t['Value'] = 'Hello, World') { "one":"1", "Tags":[ { "Value":"one" }, { "Value":"Hello, World"... Continue Reading →

Blog at WordPress.com.

Up ↑