我有一个问题。我需要在 linq to sql 请求中使用 c# 函数。例如:
void request()
{
var db = new DataClasses1(connectionString);
var result =
from a in db.Stats
where Function(a.SourceName)
select a;
}
bool Function(string sourceName)
{
return true;
}
这是行不通的,因为布尔函数(字符串源名称)无法更改为 sql 请求。在 linq to sql 中使用 c# 函数我需要做什么?