Database Design For Limited Number Of Choices In MVC And Entity Framework?

Mar 1, 2011

If I want to be able to have a table Consultant, which is the user and their personal information, and I want this user to be able to select their proficiency in a number of Programs (software) on a scale from 0-5 (zero being no experience whatsoever), how do I do this best?

I mean I could have a Consultant table with a one-to-many relationship to a Program table, and then have all the limited Programs availalbe loaded by an XML file or something, and for each Consultant associate all the Programs and their Levels of proficiency. But that seems very wrong and inefficient.

It seems to me I should have a table with all the (limited number of) Programs, and then by some sort of association between the two by Ids. But I can't get my head around how to do this. I'm thinking many-to-many... But first, is this correct? Secondly, how do I do this in an Entity Framework Model? I usually create my database code first, i.e. create the EF model, and then generate database from model. Will I get a junction table where I can add the Level field, because basically a Consultant HAS A Program with a Level, or actually a list of Programs each with a Level.

View 1 Replies


Similar Messages:

Entity Framework - Dropdown List With Limited Range Of Choices In MVC?

Feb 21, 2011

I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level of experience he/she has with this program.Program is a table in an Sql Server database, and is accessed through Entity Framework. So it would be easy enough to bind the Level property in the ViewModel to a textbox:

@Html.TextBoxFor(model => model.Level)

But I want a dropdownlist with a limited number of levels (1-5). So how do I do this and still have the dropdownlist bind to the ViewModel property?

View 1 Replies

Architecture :: Entity Framework With 3 Layers Design

May 19, 2010

I am thinking to use entity model as DAL, how should I create the BLL then? What kind of datasourceobject should I use in the asp pages?

I am looking for best practice to use Entity framework 2 in the three layers design. I had experience at dataset with three layers design.

Should I use objectdatasource at the pages for gridviews? My guess is that entitydatasource by passed the BLL which is not good, so the only option left is the objectdatasource.

Could and should my BL object inherit those entity model in the DAL, so I dont need to recreate their object's property?

View 4 Replies

Data Controls :: View Limited Number Of Item From Large Number In Datalist?

Apr 15, 2013

 i want datalist to show only 6-8items ,as these datalist is connected to datasource which has more than 20 items..

like in facebook,we have lots of friends but in friend box only 6 friends is shown and when we click that we go to next page which display all list of friends...

View 1 Replies

Architecture :: Entity Model Design Framework And N - Tier Architecture

Dec 25, 2010

recently i've studied on ADO.NET's Entity Model Framework and say 'wow' as ORM is one of the fevourite pattern i practice..but suddenly i've come to an ambiguous situation when i'm going to start. i usually follow the following 3-tier architecture..

1. UI Layer
2. BLL - business logic layer
3. DAL - Data Access Layer
a. DTO / DAO
b. Gateway (contains the sql query/stored procedure and connection with DB)

now when i'm going to use the Entity Model Design,where the DBML/ .edmx File should be placed? Because many a times i'm using the DBML file as DTO because of the mapped objects.. in the same time, sometimes DBML ( .edmx file in .NET 4.0) contains CRUD methods and stored procedured method as well as methods with different selection operations,- which should be in Gateway. so where the .edmx file should be placed !?!! IN DTO namespace !? or in Gateway namespace!

moreover sometimes there is no need for the BLL which breaks the rules of inter-layer-communication (UI > BLL > DAL.Gateway)! what makes me confuse is, what should be the ideal n-tier architecture when i'll use the ADO.NET Entity Model Design Framework

View 4 Replies

Exporting Entity Framework 4 Data Model To Entity Framework 3.5?

Oct 25, 2010

Is there a way to export a EF 4.0 Data Model to EF 3.5?

I looked around and found that we are not able to access EF 4.0 from a ASP.Net 3.5 project here: [URL]

Our project is the 1st to go to .Net 4.0 using Entity Framework and we (the team) were wondering if there was a way for the other projects that "might" need to access our data that are still using the .Net 3.5 framework.

View 1 Replies

ADO.NET :: How To Update Database Using Entity Framework

Jan 25, 2011

I want to update database using entity framework by passing class object in one go with setting without setting object values again.

I have added data using following code

[code]....

here obj is class object which i have passed to the AddTotblTables() method

similary i want to update table in same manner by passing class object.

View 1 Replies

ADO.NET :: How To Change The Database While Using Ado.Net Entity Framework

Nov 3, 2010

how to change the database while using ADO.Net Entity Framework?

I have two identical databases. I want to change the db. Can i change it through web.Config?

Like LINQ to SQL ?

View 2 Replies

ADO.NET :: Get The Value From Database Row Wise Using Ado.net Entity Framework?

Nov 25, 2010

in my table test

Name Add
0 prinku sad
1 tommy asdsa
2 ghhgh sdsdd

now i want to select the name in the first row...am using Ado.net entity framework

empEntities db =
new
empEntities();

now how to select the name at 1

db.Tests.Name.ElementAt(1);?actuually this throws an error...

View 5 Replies

ADO.NET :: Entity Framework With Multiple Database Servers

Feb 7, 2011

We have an IVR product that reads a configuration database for callflow information. I am writing a tool for our implementation team that will allow them to add/delete/update the data in the configuration database. Once the tool is in production, the implementer will use only the production release of the tool to modify the configuration database in all four of the IVR regions (Dev, QA, Cert, and Prod). Each region has its own database with identical schemas. The tool has 'tabs' across the top for each region. If a user is currently working in the Dev region and clicks the QA tab, how do I switch my connection from the Dev db server to the QA db server?

View 3 Replies

SaveChanges() Does Not Commit Changes To The Database And Entity Framework

Nov 7, 2010

All I am trying to do is to make an update to an existing User and then save the changes to the database. I fooled around with different options and can see that I can make the change to the context during Page_Load, but it does not commit the changes to the Database.

View 5 Replies

MVC :: Display Image From Database Using Entity Framework?

Oct 1, 2010

I need to do a site similar to [URL] but don't know how to display or retrieve the images as in the above website.

View 3 Replies

How To Do Caching Using Entity Framework And Can Minimize Database Hits

Dec 15, 2010

I am using ADO.NET Entity Framework 3.5 for web service.i want to know how can i caching through it and can minimize database hits?

View 1 Replies

DataSource Controls :: Use Database Instead Of MDF File With Entity Framework?

Jan 11, 2010

I transfered my data from MDF files to MS SQL Database, but I can't get it working with entity framework.

My Old connection string is:

metadata=res://*/Models.EntityModel.csdl|res://*/Models.EntityModel.ssdl|res://*/Models.EntityModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|TripsDB.mdf;Integrated Security=True;User
Instance=True;MultipleActiveResultSets=True"

I put all data from TripsDB.mdf to Trips table in local MS SQL 2008 Enterprise database. Also changed connection string to:

Server=WIESIEK;Database=Trips;Trusted_Connection=True;providerName=System.Data.SqlClient;User ID=Jan J. Roman

But my application throws System.ArgumentExceptio with message: The 'server' keyword is not supported.

on line:

private TripsDBEntities2 _entity = new TripsDBEntities2();where TripsDBEntities2 is Entity Framework instance.

View 2 Replies

Can Build ADO.NET Entity Framework Based On MYSQL Database

May 19, 2010

I am using MUSQL Database extensivly in my projects,

can we build ADO.NET entity framework based on MYSQL database?

View 2 Replies

Entity Framework - Connecting To Database In Server Control?

Aug 3, 2010

As a follow on from this question I'm building a custom server control to be placed on a Sharepoint 2010 master page. The idea behind this is that it will display a menu that is dynamically populated from the database. As this is a server control, I'm building it in a dll but I've run into a small snag. As it has to connect to the database, I need to store the connection string somewhere (and have it able to be configured based on target configuration (dev/test/prod). I was intending to the user the Entity Framework as my ORM but i'm confused as to where the connection string is to be stored. In a normal ASP.NET web app it goes in the web.config, but this is a server control in a external DLL.

Where do I store the connection string so that I can just build and deploy the assembly containing the server control.

EDIT:

Before I post a bounty, I have tried using an embedded resource XML file to hold the connection string and while this works, I'm curious as to if this is best practice/a better way?

View 2 Replies

C# - Using Entity Framework With Existing Business Layer And Database?

Feb 2, 2011

I have an ASP.NET application with existing business classes and a database schema. (which I would like to keep) Currently I am using ADO.NET for the DAL, but I would like to switch to some advanced technology there for easier data retrieval.

Is EF applicable to my situation? Can I use it without splitting up my business classes and auto code generation? Can LINQ to SQL solve my problem better?

All I want to do is map my existing classes to the existing tables and dont have to handle details of the data retrieval myself.

View 1 Replies

C# - Entity Framework Connection String From The Online Database?

Mar 3, 2011

I'm working on an application that is connected to the online MSSQL database and everything is working fine.The model I'm using is entity model.The problem is that I have to change the connection string from the online database to the local one,but I don't know how.Creating new model isn't an option.I tried changing the connection string in web.config,but errors are the only thing I get.

This is what I have in web.config:

<connectionStrings>
<add name="PravosudnaAkademijaEntities" connectionString="metadata=res://*
PrakModel.csdl|res://*/PrakModel.ssdl|res://*/PrakModel.msl;provider=System.Data.SqlClient;provider connection string='Data Source=HRVOJE-PC;Initial Catalog=pak_baza;Integrated Security=True" providerName="System.Data.EntityClient" />

View 3 Replies

Localization :: Displaying Limited Number Of Greek Characters?

Sep 15, 2010

I am using mySQL. I have separate tables for several languages. When I display the Greek statements I seem to be limited to between 192 and 201 characters. That is not the problem with English, Danish, Dutch, Russian, or Farsi. I am using the same code for each with the only change being which table is opened. (In fact I just took the Dutch code and changed only the name of the table I'm opening to the Greek table and had the same problem.)The problem is that I've also double checked the statements in the table and they are complete, e.g., some have up to 255 characters.

View 2 Replies

Error While Updating Database Record With Entity Framework On MVC Page?

Mar 12, 2010

I have an ASP.NET Page that updates registered User Address Details for a selected record.

Below is the Update method that i am calling from Controller.

When i am calling ApplyPropertyChanges method, I am getting the below error.

Did anyone run into the same error while updating the record with Entity Framework.

[code]...

View 4 Replies

How Much Entity Framework Is Good For Database That Contains Tables With Large Records

Jul 28, 2010

I am working with VS 2010, Entity framework, SQl-Server 2005, ASP.Net web forms. Currently, I am working on the Data access layer library which soon will be a web service, using Entity Framework collaboration with different design patterns like repository pattern and some best practices that posts in different blogs. I am also test each repository using the Unit testing project. Thumbs up! Working fine.

The thing I am worried about is, how much is good for retrieving data from a table that can contain 80-100k records ?

View 1 Replies

ADO.NET :: Custom Entity Framework Template And Access To The Database Type?

Sep 7, 2010

First and foremost ... I already made a few changes in the template, the most important one changing the methods generated for stored procedures with OUTPUT parameters and no resultset so that instead of instantiating a few OutputParameter objects, passing them to the method and extracting the values (all without any type checking) you just call the method with a few "out someType?" parameters so I do not need the very basics. I am totally confused by all those GlobalItem, EdmProperty,BuiltInTypeKind, TypeUsage and all this made of objects, all alike and all different though so as soon as I need more data than what's already used by the template I run into problems :-(What I would like is to change the WritePrimitiveTypeProperty() so that it outputs [StringLength(xxx)] for all char, varchar, nchar and nvarchar properties. But I can't find a way to get from an EdmProperty in the model to the database type in the store.anyone is interested here's the modified stored procedure mapping code for the template. The first code replaces the original in the .tt:

[Code]....

the second needs to be added into a copy of EF.Utility.CS.ttinclude that you add to your project and reference from the .tt

[Code]....

View 4 Replies

.net - Can Entity Framework 4.0 Works With Any Database By Changing Connection String

Nov 27, 2010

I want to know if I develop and application using entity framework 4.0 and sql server and then changing the connection string to my sql one, will it work without any problem?

What are the other considerations to keep in mind?

View 3 Replies

Tacking Number Of Users Logged In Over A Time Period - Database Design?

Nov 12, 2010

In our application, we store the most number of users online. We do this by tracking what page each user is on currently and upon login, delete users who have been inactive for X minutes and then take a count of the users online, overwriting the most number online if this is higher.

How can we change this to track the number of users online over a time period, so we can look at a line graph of the number of users online. I guess we'll need a cron to run every 1/2/5/10/20/30/60 minutes to track the number online? Then how would be store this data, the table would get very large. I would think the likes of Statcounter/Analytics would have a better way of storing this data.

View 3 Replies

Entity Framework 4 - Update Database Schema From Model. Without Wiping The Table Data?

Jun 29, 2010

I'm working on a new project where I have the luxury of working from a Model to Database approach using Entity Framework 4.

The project I'm working on is taking an agile approach where different phases will be rolled out over time.

Will the Model First approach work in my case? I noticed when you "Generate Database from Model" it recreates the entire schema from scratch which will obviously wipe all the data that is in the db. I was hoping for a more "Update Database from Model" approach where the db would just be altered to reflect the changes rather than recreated

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved