using the codefirst approach, I would like to have a CODE_YESNO table where it will have two columns C_CODE(1) and C_DESC(5) both type of string.
then I would like to reference it to my other tables.
for example lets say I have I have USERS and PRODUCTS table
and for USERS table I will have userIsActive (foreign key C_CODE) and for PRODUCTS table I will have productIsOnDiscount (foreign key C_CODE)
I don't want to add or do any modifications on the CODE_YESNO table
so how do I do that with the code first approach?