我有一个自定义类如下
public class LogFiles
{
private string _fileName;
private string _path;
private string _logStatus;
public LogFiles(string FName, string Path)
{
this._path = Path;
this._fileName = FName;
}
// the below two properties are mapped from DB entities
public string FName
{
get { return this._fileName; }
set { this._fileName = value; }
}
public string Path
{
get { return this._path; }
set { this._path = value; }
}
// the value for this property will be defined on fly in MainViewModel
public string LogStatus
{
get { return this._logStatus; }
set { this._logStatus = value; }
}
}
我将在 MainViewModel 中设置 LogStatus 属性的值,但要使用 linq 在 MainviewModel 中访问此属性
像这样的东西,
var get_logStatus = (from a in LogFiles
ordeyby a.LogStatus
select a);
上面的代码只是一个类似于将 linq 写入实体的猜测,但是自定义类是否可以使用 linq to sql 进行访问?如果听起来很愚蠢,请原谅我并纠正这个问题。