I've been developing a website and instead of having lots of models i've been chaining properties and what not to a single model by populating a prop and returning itself. not very important to the question but
var data = model.withUser(user).withStuff(data)
i'm curious if having a model class with a lot of lines of code will affect performance of the web app?
Thoughts