Click here to Skip to main content
15,885,842 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Attempting to database driven website for video rentals

So I have two tables in my database (movie, and rental),
I have a column set in each table 'OnHire' which has the data value of 'bit'
with NULL values selected.

So I have all the CRUD features working but...

When the user creates a new rental record in the rental table and turns 'OnHire' to true
I am trying to use a bool which will then turn the 'OnHire' in movies to true.

Allowing the user to know by looking at the movies table whether it is on hire or not
it is telling me i cant convert a type bool? to bool, a conversion exists(are you missing a cat)?

C#
HttpPost]
        public ActionResult Create(Rental rentals)
        {
            try
            {
                // TODO: Add insert logic here
                _entities.AddToRentals(rentals);
                _entities.SaveChanges();

                Movie mov = new Movie();

                if (rentals.OnHire)
                {
                    mov.OnHire = true;
                }
                else
                {
                    mov.OnHire = false;
                }
      
                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }


Then I am probably pushing my luck here but if that is successfull I was going to do the opposite and throw an error message if the user tries to hire out a video already on hire


if (mov.OnHire)
{
//error message
}

Any suggestions?

Also on completion of the CRUD for database I was looking to implement a search feature?

Any ideas on any tutorials guys?

Thanks
Posted
Comments
xnaLearner 21-Oct-12 19:41pm    
I am trying to use an if statement inside the create function of CRUD. and by making a reference to the record in the DB i want to update a record using a bool...is this possible without using actual sql coding?...please see below

1 solution

I am trying to use an if statement inside the create function of CRUD. and by making a reference to the record in the DB i want to update a record using a bool...is this possible without using actual sql coding?...please see below
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900