質問

I have seen samples of how to do a simple query in azure table where column equals a certain value, but now i need to do an equivalent of "select where firstname like %abc".

Anybody knows how to do this?

正しい解決策はありません

他のヒント

i found the answer. To accomplish this, you need to create a new api, and use code similar to this

exports.get = function(request, response) {
        var id = request.query.id;
        request.service.mssql.query(
        'select * from Users where name Like ?',["%test%"], {
        success: function(results) {
             response.send(200, results);
        }
    });
};
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top