4
votes
-1
votes
List<BusinessObject> or BusinessObjectCollection?
this is the way:
return arrays, accept IEnumerable<T>
=)
…
7
votes
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland you are incorrect. T is not a type nor a System.Type. T is a type parameter. typeof(T) returns the type of T. …
1
vote
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland
T is already a type parameter, you don't need to call typeof on it. TypeOf takes a type and returns its type parameter. …
28
votes
NHibernate ISession Flush: Where and when to use it, and why?
Briefly:
Always use transactions
Don't use Close(), instead wrap your calls on an ISession inside a using statement or manage t …
1
vote
NHibernate.MappingException: No persister for:
Should it be name="Id"? Typos are a likely cause.
Next would be to try it out with a non-generic test to make sure you're passing in the proper type parameter.
Can you …
0
votes
Constructor parameters for controllers without a DI container for ASP.NET MVC
You can create an IModelBinder that spins up an instance from a factory - or, yes, the container. =)
…
0
votes
NHibernate : map to fields or properties ?
I map to properties because I use automatic properties.
Except for collections (like sets. Those I map to fields (access="field.camelcase-underscore") because I …
31
votes
1
vote
Control serializer in JsonResult aka Json function in ASP.Net MVC?
Check the source to see how JsonResult is implemented. Derive from ActionResult with your DataContractJsonSerializer implementation. Ri …
0
votes
NHibernate: Best way to map to DateTime a value stored in a non-standard way
If you cannot modify your database schema, the answer is IUserType. …
1
vote
ASP.NET MVC - adding action filters programmatically
A better solution would be to use the null object pattern.
Your filter would log normally (its job is …
2
votes
Inject different object to constructor with StructureMap for certain case
Something like...
ForRequestedType<DataContext>()
.CacheBy(InstanceScope.Hybrid)
.AddInstances(inst => inst.ConstructedBy(() =>
new SecondDataContext { …
0
votes
12
votes
Things to consider when writing our own Continuous Integration server?
I would strongly advise against this NIH thinking.
Consider modifying an open source CI server like CruiseControl.NET
Consider writing custom Nant tasks
Consider m …
