Entity Framework Relationships Code First

preview_player
Показать описание
Shows how relationships with entity framework code first works both in the model and the database.
Рекомендации по теме
Комментарии
Автор

When adding properties, type instead of 'public...', type 'prop' <TAB><TAB>. shorthand for typing the get;set; stuff

jzmmm
Автор

Thanks for the great videos Jamie King !

davester
Автор

I like "splat".  How can someone not like splat.  Asterisk is too hard to pronounce, and star is too pedestrian.

PatrickHoodDaniel
Автор

Nothing wrong with saying 'splat'. Doing things like that makes programming fun. Programming should be fun, right? I always say:
SELECT finger FROM hand WHERE id=3

Grimlock
Автор

Shouldn't you be using a 'using'?
ie, using(var db = new MeContext()){ .... }

jzmmm