Difference between object and entity | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Difference between object and entity

24th Apr 2018, 10:18 AM
Saran
Saran - avatar
2 Answers
0
"Generally speaking, an entity is an abstract concept that's typically represented by a table in a database schema. The term object usually refers to in-memory data structures. An object that represents an entity may be called an entity object (often mapped to a row in a database table), that is it's an instance of an entity class (often mapped to a table). In the .NET Framework (3.5 SP1) an entity is part of an instance of the EDM (Entity Data Model), and is mapped to rows in one or more tables. For example, ther can be a Customer entity type that can map to a single Customer database table or it may also extend to a CustomerPreferences table as well. Using the EntityProvider, you can access entites, as if they were just rows in database tables, using eSQL. The EDM model is also known as the conceptual layer. "->stackoverflow https://stackoverflow.com/questions/695934/is-there-a-difference-between-an-entity-and-a-object
24th Apr 2018, 11:07 AM
᠌᠌Brains[Abidemi]
᠌᠌Brains[Abidemi] - avatar
0
tku brains...
24th Apr 2018, 12:34 PM
Saran
Saran - avatar