我有两个表格,即州和国家。这两个是我的视图页面中的下拉列表。我正在使用独立查询显示它们每个的下拉值。在表格状态中,我有 stateid 和 countryid。我需要根据国家/地区选择过滤州值。我什至有一个名为 Table 的主表,其中包含州和国家/地区的 id 以下是我用来显示的方式,
enter code here
//获取状态值
var query = (from i in dbContext.countries
join j in dbContext.States on i.Country_id equals j.Country_id
where j.State_id >= 0
select new
{
state = j.State_name}).ToArray//To get state values
在此处输入代码
var str = (from li in dbContext.countries
where li.Country_id >= 1
select new
{
country = li.Country_name}).ToArray();//To get country
价值观
我如何查询用于过滤主表“表”中的值。我在编写过滤查询时遇到问题这可能使用 linq 查询吗?请建议我如何做到这一点谢谢