my code :

public List<Book> GetBook(string NameField, object Value)
    {
        var queryESQL = @"select VALUE Book from Book
                 where Cast(Book." + NameField + " as string) like '%M%'";
        var query = this.Entities.CreateQuery<Book>(
                  queryESQL);
        return query.ToList();
    }

error :

Type 'string' could not be found. Make sure that the required schemas are loaded and that the namespaces are imported correctly. Near type name, line 2, column 51.

update :

new code :

public List<Book> GetBook(string NameField, object Value)
    {
        var queryESQL = @"select VALUE Book from Book
                 where Cast(Book." + NameField + " as EDM.string) like '%M%'";
        var query = this.Entities.CreateQuery<Book>(
                  queryESQL);
        return query.ToList();
    }

error :

Type 'EDM.string' could not be found. Make sure that the required schemas are loaded and that the namespaces are imported correctly. Near type name, line 2, column 51.
link|improve this question

60% accept rate
feedback

2 Answers

Use Edm.String instead of string when casting.

link|improve this answer
error : Type 'EDM.string' could not be found. Make sure that the required schemas are loaded and that the namespaces are imported correctly. Near type name, line 2, column 51. – mrJack Aug 25 '11 at 18:34
@mrJack: Did you make sure you capitalized the S in EDM.String? – StriplingWarrior Aug 26 '11 at 2:38
@StriplingWarrior : yes .I am sure – mrJack Aug 26 '11 at 5:48
feedback

The CreateQuery<> method uses the CLR types, instead of EDM types, so use System.String instead of EDM.String in the query.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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