Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var db = new NotentoolEntities();
  2. IQueryable<GroupOfBranches> queryGOB = db.tabGroupOfBranches.Cast<GroupOfBranches>().Where(x => x.intGroupID.Equals(ID));
  3. List<GroupOfBranches> GOB = new List<GroupOfBranches>(queryGOB); //here is the error
  4.  
  5. A first chance exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement