我想知道是否可以通过在linq中使用变量来查询数据库集。
首先,我查询我的数据库以获取表的名称作为字符串,我想将其转换为表名:
public static string getTableName()
{
string tableName = string.Empty;
var department= "Sales";
using (var context = new ALLDBEntities())
{
tableName = (from x in context.PROCESS_MATRIX
where x.AREA.Equals(product)
select x.ENTITY).FirstOrDefault();
}
return tableName;
}
现在我将我的表名作为字符串,我希望能够使用它来编写linq查询,但我想使用alldbEntities.sales
而不是table
。这是因为我需要编写多个查询来执行相同的操作,因为我将不得不查询不同的表。
有没有实现这个目标?
public List<sales> GetData(DateTime startDate, DateTime endDate)
{
var table = getTableName();
this.startDate = startDate.AddDays(-1);
this.endDate = endDate.AddDays(1);
using (var alldbEntities = new ALLDBEntities())
{
salesinfo = alldbEntities.sales.Where(f => f.Date >= this.startDate && f.Date <= this.endDate).ToList();
}
return salesinfo;
}
答案 0 :(得分:3)
您的身份是:Scott shows you how to use Dynamic LINQ
你可以做的事情:
通过使用(导入)System.Linq.Dynamic命名空间将Dynamic Expression API纳入范围。下面是将动态表达式API应用于LINQ to SQL数据源的示例。
var query =
db.Customers.
Where("City = @0 and Orders.Count >= @1", "London", 10).
OrderBy("CompanyName").
Select("new(CompanyName as Name, Phone)");
请记住尝试innerIt和outerIt
如何使用outerIt
的示例static void Main(string[] args)
{
var claims = new List<Claim>();
claims.Add(new Claim { Balance = 100, Tags = new List<string> { "Blah", "Blah Blah" } });
claims.Add(new Claim { Balance = 500, Tags = new List<string> { "Dummy Tag", "Dummy tag 1" } });
// tags to be searched for
var tags = new List<string> { "New", "Blah" };
var parameters = new List<object>();
parameters.Add(tags);
var query = claims.AsQueryable().Where("Tags.Any(@0.Contains(outerIt)) AND Balance > 100", parameters.ToArray());
}
public class Claim
{
public decimal? Balance { get; set; }
public List<string> Tags { get; set; }
}