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

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This is a bug, it's logged in the issue list on github and is being worked on at the moment. See the link below for details:

http://github.com/subsonic/SubSonic-3.0/issues/148

link|improve this answer
Thanks Adam i foud the solution in the link that you indicated. Was a problem in the Subsonic.Core – Myr0 Mar 1 '10 at 17:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.