problem about createquery-Collection of common programming errors


  • Boris
    ef-code-first full-text-search iqueryable createquery
    I am using .NET 4.5 and EF 5 with Code First approach and now I need to implement Full Text Search. I have already read a lot about it and so far my conclusions are:Stored procedures nor Table Value Functions can not be mapped with Code First. Still I can call them using dynamic sqldbContext.Database.SqlQuery<Movie>(Sql, parameters)But this returns IEnumerable and I want IQueryable so that I can do more filtering before fetching the data from db server. I know I can send those parameters t

Web site is in building