| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 11 months |
| seen | 10 mins ago | |
| stats | profile views | 66 |
|
Mar 15 |
revised |
Struct in MVC4 Web API causes route to break clarified filtering |
|
Mar 15 |
answered | Struct in MVC4 Web API causes route to break |
|
Mar 15 |
comment |
Struct in MVC4 Web API causes route to break @dakait I've added the route configuration. It's just the out of the box route. |
|
Mar 15 |
revised |
Struct in MVC4 Web API causes route to break added 301 characters in body |
|
Mar 15 |
awarded | Yearling |
|
Mar 15 |
asked | Struct in MVC4 Web API causes route to break |
|
Jan 25 |
awarded | Scholar |
|
Jan 25 |
accepted | Bootstrap tooltip causes form elements in grid layout to collapse spacing |
|
Jan 25 |
awarded | Student |
|
Jan 23 |
asked | Bootstrap tooltip causes form elements in grid layout to collapse spacing |
|
Jul 8 |
awarded | Nice Answer |
|
Dec 7 |
awarded | Commentator |
|
Dec 7 |
comment |
Can an html element have multiple ids? But, if you read tvanfosson's answer, the two IDs clearly differ "enclosing_id_123" != "enclosed_id_123" |
|
Jun 16 |
awarded | Critic |
|
Jun 11 |
awarded | Yearling |
|
Jun 16 |
comment |
Nhibernate - Initialize lists - Best Practice? Jamie Ide: True, if it's a one-many with a parent then that helper is a great place to set it. If it's a Many to many then there isn't a parent. Not sure on context here but highly suspect you're right. Webjedi, I like your approach too. That's why I ended up at Enumerable. In my case, it satisfied everything I wanted to do with the collection. |
|
Jun 16 |
answered | Nhibernate - Initialize lists - Best Practice? |
|
Jun 16 |
answered | Mapping complicated references in NHibernate |
|
Jun 16 |
comment |
NHibernate “null identifier” exception after inserting an entity ' public void Save(T entity) { WithinTransaction(() => Session.SaveOrUpdate(entity)); } private void WithinTransaction(Action action) { ITransaction transaction = Session.BeginTransaction(); try { action(); transaction.Commit(); } catch (Exception) { transaction.Rollback(); throw; } finally { transaction.Dispose(); } } ' |
|
Jun 16 |
comment |
NHibernate “null identifier” exception after inserting an entity There really is no best way, imho. It all depends on your specific design. Typically, I have aggregate roots that specify cascades to the children. I then wrap the save at the aggregate root level in a transaction. For instance. Answers have comments so I would do an answer.AddComment(comment); answerRepository.Save(answer). My new favorite method for wrapping the save in a transaction comes from FNH's (old) source....will post in a bit. |