I am trying to search an XML field within a table, This is not supported with EF.
Without using pure Ado.net is possible to have native SQL support with EF?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For .NET Framework version 4 and above: use
ObjectContext.ExecuteStoreCommand()if your query returns no results, and useObjectContext.ExecuteStoreQueryif your query returns results.For previous .NET Framework versions, here’s a sample illustrating what to do. Replace ExecuteNonQuery() as needed if your query returns results.