ForeignKey não sendo reconhecido no VS2012 RC

depois de muita ajuda ontem, eu encontrei um erro conhecido no asp.net4 beta - eu atualizei para o VS2012 RC Express (4.5), e agora o VS está relatando dois erros no meu modelo, que estavam ok anteriormente:

"O tipo ou nome de namespace 'ForeignKeyAttribute' não pôde ser encontrado (você está perdendo uma diretiva usando ou uma referência de assembly?)"

"O tipo ou nome do namespace 'ForeignKey' não foi encontrado (você está perdendo uma diretiva usando ou uma referência de assembly?)"

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Data.Entity;

namespace MvcApplication6.Models
{
    public class tblRental
    {
        [Key()]
            public int rental_id { get; set; }
        public int room_id { get; set; }
        public DateTime check_in { get; set; }
        public DateTime check_out { get; set; }
        public decimal room_cost { get; set; }
        public long customer_ref { get; set; }
        [ForeignKey("customer_ref")]
        public virtual tblCustomerBooking Customer { get; set; }

    }

    public class tblCustomerBooking
    {
        [Key()]
        public long customer_id { get; set; }
        public string customer_name { get; set; }
        public string customer_email { get; set; }
        public virtual ICollection<tblRental> Rentals { get; set; }
    }

Alguém sabe se a referência a ForeignKey foi alterada?

Obrigado por qualquer ajuda,

Marca

questionAnswers(1)

yourAnswerToTheQuestion