I have following model: class Client(models.Model): user = models.OneToOneField(DjangoUser, unique=True)
I am creating a brand new application, including the database, and I\'m going to use Entity Framework Code First. This will also use WCF for services which also opens it up for multiple UI\'s for diff
Let\'s assume a User class with theese fields : @Entity public class User extends Model { public String email;
I have two tables, users and tokens. Each user have a activated field and each token have the {id, token, user_id, created} fields.
I am using Ruby on Rails 3.0.7 and I would like to save associated model class instances (I use an has_many :through => ... association) on the creation time of the parent model. That is, I have th
i have a beginner question. Im making a video site. I store the data in my database about the videos. And i have a bit of a problem.
Assuming an architecture as such. MODEL > BLL > DLL Trying to implement lazy loading in my MODEL I have run into a circular dependency between my MODEL and BLL..
I have the form 2 checkboxes and I am trying to find some way, how to validate it - I want to know, if a user clicked on one of two checkboxes...
I have a form: class AdForm(ModelForm): class Meta: model = Ad widgets = { \'title\': TextInput(attrs={\'class\': \'small\'}),
I have been working on my own library/framework for the learning experience for a while.MVC is one of those things that took me a while to really understand but I do finally \"Get it\".