Answers for "entity framework return count of records"

0

entity framework return count of records

var count = (from o in context.MyContainer
             where o.ID == '1'
             from t in o.MyTable
             select t).Count();
Posted by: Guest on February-10-2021

Code answers related to "entity framework return count of records"

Browse Popular Code Answers by Language