Hi!
i´m using LINQ with the subsonic in a class to get my data here is the code below:
public IQueryable<Veiculo> SelecionaVeiculosSite()
{
return (from v in _db.Veiculos
where v.Ativo == true &&
v.Marca.Ativo == true &&
v.Modelo.Ativo == true
select v
);
}
You will see one difference in line at "v.Marca.Ativo == true", I did one modification in template of ActiveRecord to get a Object and not a IQueryable.
This is the code modified in the template generated:
public Marca Marca
{
get
{
var repo=OKMMySql.Marca.GetRepo();
return (from items in repo.GetAll()
where items.ID_Marca == _ID_Marca
select items).SingleOrDefault();
}
}
in the Code it´s ok, but this Select return this Execution time Error:
The member 'TestMode' is not supported.
I did not founded nothing in the Net about this error.
Many Thanks