ApplicationEntities Class

EBN

New member
Joined
Nov 16, 2016
Messages
3
Programming Experience
10+
Does anyone know where I can get details on the ApplicationEntities class and in what library it resides?
 
If it is what I think it then you can't get details on it and it doesn't reside in any library. Are you using - or looking at an example that is using - the Entity Framework? If so then that class is generated in your project for your project based on your data. You're going to have to provide more information on what you're actually doing and why you think you need that class if you want more specific information on what to do about it.
 
I believe you are correct that it is part of the entity framework. The actual code is:
using (ApplicationEntities context = new ApplicationEntities())
{
  var temp1 = context.states_lookup;
  var temp2 = temp1.Take(10).Select(x => x.state_id);
  var temp3 = temp1.ToList();
  var temp4 = temp1.Count();
  var temp5 = temp4 + temp2.Count();
}
 
Last edited by a moderator:
Will need to take a look at EF but I cannot do it now. Leaving for the Holiday. Thanks you so much for your help. Have a great Thanksgiving.
 
Back
Top Bottom