3
Answers

LIKE In LINQ Search the Name Core Web API

Photo of San

San

6y
668
1
var Account = from s in _context.Account
where s.AccountName == name
select s;
 
How to use like above LINQ query? 

Answers (3)