Click here to Skip to main content
15,914,444 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: To ORM or not to ORM Pin
RickZeeland6-Mar-18 2:47
mveRickZeeland6-Mar-18 2:47 
AnswerRe: To ORM or not to ORM Pin
Steve Naidamast6-Mar-18 2:56
professionalSteve Naidamast6-Mar-18 2:56 
AnswerRe: To ORM or not to ORM Pin
fqborges6-Mar-18 2:58
fqborges6-Mar-18 2:58 
AnswerRe: To ORM or not to ORM Pin
DetroitJ6-Mar-18 3:08
DetroitJ6-Mar-18 3:08 
AnswerRe: To ORM or not to ORM Pin
Tim L. Holgerson6-Mar-18 3:26
Tim L. Holgerson6-Mar-18 3:26 
AnswerRe: To ORM or not to ORM Pin
Jaime Premy6-Mar-18 5:00
professionalJaime Premy6-Mar-18 5:00 
AnswerRe: To ORM or not to ORM Pin
EbenRoux6-Mar-18 5:34
EbenRoux6-Mar-18 5:34 
AnswerRe: To ORM or not to ORM Pin
Gerry Schmitz6-Mar-18 10:00
mveGerry Schmitz6-Mar-18 10:00 
Even for my "hobbies" now, I use Entity Framework (EF ORM).

Using "code first", your POCO's can generate the data base (local file; sql express; standard):

db.Initialize().

(Handy when "importing" 3rd party xml-type data bases).

Access using LINQ; with or without lazy loading.

Using a repository pattern, you centralize and "standardize" your access methods for "that" db context. Helps the thought process.

Change your "data model" in code and recreate your db with one line of code.

NuGet manages all the EF dependencies.

In your case, using EF "database first", it's a simple matter to generate your "entities"; and "expand" them using partial classes. You can then "convert" to "code first" for continued development.
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal

AnswerRe: To ORM or not to ORM Pin
Marc Greiner at home7-Mar-18 0:01
Marc Greiner at home7-Mar-18 0:01 
AnswerRe: To ORM or not to ORM Pin
MadMyche7-Mar-18 5:55
professionalMadMyche7-Mar-18 5:55 
GeneralRe: To ORM or not to ORM Pin
RickZeeland7-Mar-18 6:05
mveRickZeeland7-Mar-18 6:05 
AnswerRe: To ORM or not to ORM Pin
Eric Whitmore7-Mar-18 16:36
Eric Whitmore7-Mar-18 16:36 
GeneralHas anyone done a side loaded UWP application? Pin
Dan Neely5-Mar-18 7:17
Dan Neely5-Mar-18 7:17 
GeneralRe: Has anyone done a side loaded UWP application? Pin
raddevus5-Mar-18 7:25
mvaraddevus5-Mar-18 7:25 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely5-Mar-18 7:40
Dan Neely5-Mar-18 7:40 
GeneralRe: Has anyone done a side loaded UWP application? Pin
raddevus5-Mar-18 7:53
mvaraddevus5-Mar-18 7:53 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Pete O'Hanlon5-Mar-18 19:52
mvePete O'Hanlon5-Mar-18 19:52 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely6-Mar-18 2:49
Dan Neely6-Mar-18 2:49 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Pete O'Hanlon6-Mar-18 4:18
mvePete O'Hanlon6-Mar-18 4:18 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely6-Mar-18 3:18
Dan Neely6-Mar-18 3:18 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Pete O'Hanlon6-Mar-18 4:17
mvePete O'Hanlon6-Mar-18 4:17 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely6-Mar-18 4:33
Dan Neely6-Mar-18 4:33 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely6-Mar-18 6:05
Dan Neely6-Mar-18 6:05 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Dan Neely6-Mar-18 8:49
Dan Neely6-Mar-18 8:49 
GeneralRe: Has anyone done a side loaded UWP application? Pin
Pete O'Hanlon6-Mar-18 10:41
mvePete O'Hanlon6-Mar-18 10:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.