Answers for "only the needed columns in Linq"

0

only the needed columns in Linq

using (var context = new LINQEntities())
            {
                var fileCollection = context.FileRepository.Where(a => a.IsDeleted ==        false).ToList();
            }
Posted by: Guest on February-25-2022

Code answers related to "only the needed columns in Linq"

Browse Popular Code Answers by Language