public List<string> ListServers()
{
MyDbContext myDbContext = new();
var results = myDbContext.Apps
.Select(c => new { c.IISServer})
.Distinct()
.OrderBy(x => x.IISServer)
.Select(x => x.IISServer);
return results.ToList();
}
Index What is Alexa What is Alexa Skill? Why is it required when Alexa already equipped with voice assistant? Dev...
No comments:
Post a Comment