Hello guys,
I need to do a SELECT in Linq C#, but don't work. My code:
var name = "aa"
var listAccounts = (from i in contexto.ContextoServico.AccountSet
where
name.ToUpper().Contains(i.ojc_name.ToUpper())
orderby i.ojc_name ascending
select i).Take(10).ToList();
Can you help me ?
*This post is locked for comments
I have the same question (0)