EF 6 is a little different... there are two options, besides using EF 5, one uses a design (edmx) the other puts a very clean bit of code, database context class, and the database object.
Initial attempts I used the design, and surprised that this created a new table and added a versioning into the database. Also, Package Manager installs migration tools into the project. The second approach seems simpler to implement.
not using migration tools.. EF 6's dbcontext and the ontology class is clean. a design (edmx) was not added. also, the project assembly is kept seperate from the Telligent extension.
EF 6 is a little different... there are two options, besides using EF 5, one uses a design (edmx) the other puts a very clean bit of code, database context class, and the database object. Initial attempts I used the design, and surprised that this created a new table and added a versioning into the database. Also, Package Manager installs migration tools into the project. The second approach seems simpler to implement.