gpt4 book ai didi

c# - 使用单个模型属性将多个数组值传递给 Web API Controller

转载 作者:太空宇宙 更新时间:2023-11-03 12:45:36 24 4
gpt4 key购买 nike

我有一个如下所示的 $scope 对象

$scope.array=[{"ID":"1","ID":"2","ID":"3"}];

我想做的是将这些值传递给以下 SQL 查询

Select * from table where ID in("Here I need the above 3 values one after another")

我该怎么做?

最佳答案

创建一个类

public class myId {
public int ID {set;get;}
}

将它传递给 web api

public void submitID(List<myId> ids){
// do rest of the things
var id = string.Join(",", ids.Select(x => x.ID).ToArray());
var query="Select * from table where ID in('"+id+"')";

}

关于c# - 使用单个模型属性将多个数组值传递给 Web API Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37427115/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com