Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am suddenly switches to work on code first entity framework 4.1. to be very frank..I don't know anything about this framework. but since last 8 hrs, reading blogs, articles i feel much better....

specially here This is one of the best blog i seen so far. but the steps given, are not matching with the practicals. I need more focus on 3'rd and 4'th step given here. I am unable to generate the database from my defined entityset. I am getting the SQL , i can execute. but facing issue of

Could not locate entry in sysdatabases for "MyBD" database . No entry found with that name. Make sure that the name is entered correctly entity framwwork.

If i executes the sql again , i am getting same error line following the name of tables already exist in database.

If refresh the Dataconnection in server explorer, there is no such tables created as i define in entity.

what need to do?

Also Can not found the option on right click in solution exploer to "generate database" from selected class file. my class file having context class inherited from the DBContext object. I installed the Enity framework 4.1 from microsoft. so ot should appear there.... what i need to do ?

share|improve this question

2 Answers

up vote 0 down vote accepted

If you are creating the database from the model, you need to select the empty model first. Here are the other steps to create db:

  1. Select new connection
  2. Set Server name: if you installed it, just type . to select default. You can also try (local)
  3. Set new database name
  4. Copy DDL script to your SQL server management studio's query screen
  5. Run the script to create your db

After running the script, you will have the initial table. Config file will have connection string named as container name.

Now, when you want to switch to code generation similar to example with TT files, you can right click and add code generation. It will create partial class for the entity model and one file for dbcontext. Similar to this:

 using System;
    using System.Collections.Generic;

    public partial class Contact
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }

Context will have only one table.

 public partial class PersonModelContainer : DbContext
    {
        public PersonModelContainer()
            : base("name=PersonModelContainer")
        {
        }

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            throw new UnintentionalCodeFirstException();
        }

        public DbSet<Contact> Contacts { get; set; }
    }

You dont need TT model. You can add these files directly. You need one context class inheriting from DbContext and one partial class file for each type of entity. If you make a change to model, EF will detect that. You need to define Db initializer. For the sample demo on that webpage, you can add initializer to another method. If it is a web project, you add this init function to Global.asax->application_Start for the initial development. You have different options for initializers. I use drop and create for initial development.

 static void InitDbCheck()
        {
            Database.SetInitializer(new DropCreateDatabaseIfModelChanges<PersonModelContainer>());
            using (var db = new PersonModelContainer())
            {
                //accessing a record will trigger to check db.
                int recordCount = db.Contacts.Count();
            }
        }

        static void Main(string[] args)
        {



            using (var db = new PersonModelContainer())
            {
                // Save some data
                db.Contacts.Add(new Contact { Name = "Bob" });
                db.Contacts.Add(new Contact { Name = "Ted" });
                db.Contacts.Add(new Contact { Name = "Jane" });
                db.SaveChanges();

                // Use LINQ to access data
                var people = from p in db.Contacts
                             orderby p.Name
                             select p;

                Console.WriteLine("All People:");
                foreach (var person in people)
                {
                    Console.WriteLine("- {0}", person.Name);
                }

                // Change someones name
                db.Contacts.First().Name = "Janet";
                db.SaveChanges();
            }
        }
share|improve this answer

I want to point to the connection string just in case. The databasename is MyBD in the reported error message. That looks a little strange, I have the feeling that your databasename is MyDB and there is a typo in the connection string definition or somewhere that the connection string is used.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.