Tagged Questions
0
votes
0answers
9 views
Parse big XML feed and split information into several models
I have a large XML feed with student information.
<students>
<student>
<studentId>10</studentId>
<name>Joe Doe</name>
...
3
votes
1answer
24 views
Float type field in Model while automatically created in database as real type?
Iam using mvc4 .I have a model .In that model i created a field called "AllFuels" of data type Float.
But when the table automatically created in the database the data type of the field "AllFuels" ...
2
votes
2answers
39 views
asp.net MVC 4 - output list of checkbox items, associate selections with user - allow display & editing later
ASP.NET C# MVC 4 Code First application - in Visual Studio 2012 Express, SQL Server 2012 Express.
I have a places object. I would like to output the name of all places in a list - with a check box ...
1
vote
1answer
45 views
How to associate entities generated by separate forms… while not having access to the code of one
Ok, so I am attempting to implement the typical image-upload capability in my website. (I never expected it to be so complicated!!!) I finally found an AWESOME nuget package (MvcFileUploader) that ...
0
votes
1answer
32 views
Can't execute regular sql query through Entity Framework
I'm trying to execute a long sql query through:
IEnumerable<erequest> blah = db.Database.SqlQuery<erequest>().ToList();
query is displayed below for your convenience. When I exectute ...
0
votes
1answer
40 views
Seeding data in Configuration.cs, creating duplicate data with AddOrUpdate
I am using Migrations in an MVC 4 EF5 application in Visual Studio 2012 Express with SQL Server 2012 Express, using Code First.
I use the Seed method in configuration.cs, firstly creating a Tags ...
1
vote
2answers
21 views
Convert sql to entity in query syntax
How can i convert the following query to entity framework in query syntax..
SELECT MIN(Date) StartDate, MAX(Date) EndDate, Title, Flag FROM
Holiday GROUP BY Title, Flag
Any help?
0
votes
1answer
20 views
How to solve “LINQ to Entities only supports casting EDM primitive or enumeration types.” error?
Code:
public MVCCreationOptions GetMVCOptions()
{
IQueryable<AType> aTypes = _mVDataReadService.GetRecords().AreActive<AType>();
var creationOptions = new ...
1
vote
0answers
25 views
DbUpdateConcurrencyException not raised Database First
I am currently following this tutorial for Concurrency Handling.
...
0
votes
0answers
19 views
How to incorporate user role updates in a unit of work using EntityFramework and SimpleMembership
I have a repository class that looks like this:
public class UserRepository : RepositoryBase<UserProfile>, IUserRepository
{
public UserRepository(IUnitOfWork unitOfWork)
: ...
2
votes
1answer
78 views
Generic save method
In my generic repository I need to write generic Save method which will edit existed or add new entity depending on id.
public void Save<T>(T entity) where T : TEntity, IKeyId
{
if ...
0
votes
1answer
27 views
“The relationship could not be changed because one or more of the foreign-key properties is non-nullable…”
Getting the following error upon save of my context:
The operation failed: The relationship could not be changed because one or more of the foreign-key properties is non-nullable. When a change is ...
0
votes
2answers
50 views
How to map a 1:1 (optional) mapping in Entity Framework
I have a class like:
public class Employee
{
[Column("employee_id")]
public int EmployeId {get;set;}
}
public class Location
{
[Column("employee_location_id")]
public int Id ...
0
votes
2answers
72 views
LINQ + EntityFunctions in asp.net mvc
I have such code using EntityFramework Alpha3 (from nuget):
class Member
{
[Key]
public int Key { get; set; }
public string Forename { get; set; }
public string Surname { get; set; }
...
2
votes
2answers
46 views
Left OuterJoin in Entity/Linq
So I am deeply confused. I have two tables, one is locations assignments which consists of: location id, type and type id. I also have a table called services, which consists of name, id , description ...
0
votes
1answer
44 views
Sequence contains no elements error with inheritance
I have a base class from which almost everything else inherits..
public abstract class MyBaseClass
{
public int Id { get; set; }
public int OwnerId{ get; set; }
public virtual Org Owner{ ...
1
vote
0answers
33 views
Entity Framework add a column to the middle table [duplicate]
I have 2 models, one with the Users and one with the Profiles. Each User can have many Profiles and vice versa. The problem is that the Users are linked to a Profile with a custom order. So I thought ...
0
votes
1answer
28 views
Database design with a single entity with many different units
I'm new to database design and I am working on a project that requires the use of a single entity (medication) that could be tied to any number of patients and each patient could have a different ...
0
votes
2answers
27 views
how to restrict access to certain properties of an entity based on the requester
I am new to MVC and am building a web api for a mobile application. I am using asp.net web api and entity framework.
I have read a lot about authentication and authorization for web api. The part i ...
0
votes
3answers
64 views
EF 5 Enable-Migrations : No context type was found in the assembly
I have 4 projects :
Toombu.Entities : all models are there
Toombu.DataAccess: Mapping, Repository and ToombuContext
Toombu.Logique : Logic of my application
Toombu.Web : MVC 4 application. With all ...
-1
votes
0answers
25 views
Create info windows for each marker
I am walking through a location object to create 155 markers on a google map using the API. what I am wondering is, is there a way to create an info window for each marker that is unique to each ...
0
votes
1answer
32 views
Entity Framework Query - Get distinct region from location
So I have the following method which is a query helper method which is suppose to find me all regions from a location, there are 155 locations thus 155 regions, how ever, there are only 4 regions, ...
0
votes
0answers
36 views
MVC 4 ADO.net DatabaseFirst working with database
I am writing project on ASP.NET MVC 4. The database for this project was not originally designed, and the modification or addition of new tables in the database is done campaign work. I use ADO.NET EF ...
1
vote
1answer
61 views
Injecting DbContext into Repository class library
The projects in my solution are set up like this:
App.Data
App.Models
App.Web
In App.Data, I'm using Entity Framework to access my data with a bunch of Repositories to abstract interaction with ...
0
votes
1answer
46 views
Use LINQ to Access All the Collections of a Collection on My Model?
I am trying to write a property on my model, with only a get accessor that can return a collection that is comprised of all the collections that each member of a collection property contains.
So:
...
-1
votes
0answers
27 views
Lambda expression Fetch and Count with a where clause
i have these lines:
model.Total = RecommendedUserRepository.Count(x => x.RecommendedByUser.Customer.CustomerId == customerId);
model.RecommendedUsers = RecommendedUserRepository.Fetch(x => ...
0
votes
1answer
37 views
Entity Framework EntityType 'UserAccount' has no key defined
I'm getting the following error:
One or more validation errors were detected during model generation:
\tSystem.Data.Entity.Edm.EdmEntityType: : EntityType 'UserAccount' has no key defined. Define ...
0
votes
3answers
66 views
What is the relationship between domain models and view models? Do they need to be separate? (Does using EF complicate this?)
So my programming background is very self-taught and sporadic. I am working on an MVC4 project and am trying to focus on best practices rather than just functionality.
The general sense of the ...
1
vote
0answers
56 views
Using Entity Framework with Existing Models
I am working on a MVC4 project which will need to use a number of different databases, each with a few stored procedures for searching. The site is an asset search tool which needs to query various ...
0
votes
1answer
58 views
MVC Multiple DropDownLists on one page?
I'm new to MVC and I am trying to bind multiple dropdownlists on the same page, so I can grab the selected value from each and use it to search the database. My code gives me an infinite loop. Can ...
1
vote
2answers
30 views
Entity Framework: Connect to an external database
I have created application under MS VS 2012 express. I am using Entity Framework to access local database SQL Server Compact 4.0. Everything works just fine:
Web.config
<connectionStrings>
...
2
votes
2answers
53 views
Add object to database with username
I am getting a simple object from a form in a MVC4 application
portfolio = {code: xxxxx, quantity: -10}
I need to add the Username to the database when I do this insert which I already know I can ...
-1
votes
1answer
24 views
Update only a single column using EF5 in MVC4
I have an UserProfile model
public class UserProfile
{
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
[Key]
[Required]
public ...
0
votes
2answers
49 views
MVC db context overuse?
I have added a database repository layer to my MVC application which does the CRUD. Sometimes my controllers need to call multiple db repositories and I do this by calling the db respitories I need. ...
0
votes
0answers
25 views
DateCreated nulled out when editing
I am trying my hand at ef code first and running into issues.
I have a interface IAuditable:
public interface IAuditable
{
DateTime? DateCreated { get; set; }
DateTime? DateModified { get; ...
0
votes
1answer
31 views
Entity Framework UnintentionalCodeFirstException
I have a MVC 4 project set up and generated all the model classes using Entity Framework. Then I added a class and named it same as "MyProjectEntities" class and made it partial so I can add ...
2
votes
3answers
69 views
Reducing the number of trips to the database using EF and LINQ
Consider the following code:
// check record exists
Adjuster adj = new Adjuster();
if (db.Adjusters.Where(x => x.userID == user.id).Any())
{
adj = db.Adjusters.Where(x => x.userID == ...
0
votes
2answers
36 views
How to add 2 of the same properties to a Model?
Say I have a class like:
public class User
{
..
}
public class ProductSale
{
[ForeignKey("User")]
public int CreatedByUserId {get;set;}
[ForeignKey("User")]
public int UpdatedByUserId ...
0
votes
1answer
61 views
Entity framework is making the id null on insert
I'm getting the following error when I try to insert a new row in one of my relational tables. I have the following two models:
public class CompanyCredit
{
[Key]
...
0
votes
0answers
50 views
MVC4 EF 5 Database Design
I plan on creating an MVC4 EF5 website with multiple databases. One database will be an ASP .NET Membership database. The other will pertain to certain businesses.
Say for example, DB1 = ...
1
vote
0answers
49 views
Asp.net mvc & Entity Framework : errors when multiple users use to the application
I'm having strange errors on production environment which I don't have on development environment: When testing with 4 users the application is working fine without errors, but when 10 users are using ...
0
votes
0answers
21 views
Where are the entity DLL's stored
I seem to be missing: System.Data.Entity.ModelConfiguration.Conventions; when creating a class library for my models, where would this dll be stored? and if its not there whats the next step?
0
votes
1answer
22 views
Weird behavior with Range DataAnnotation
I have a Password field with [Range(5, 10)].
If I input a correct value between 5 and 10, it displays a message error anyway. What might be that?
0
votes
0answers
16 views
In SQL Server federation, federation root table contained Id as PK with FK
I am working on MVC4 application with code first and Sql federation db. I have implemented membership on root database, which contains User table.
User Table
Id PK,
Email nvarchar(128),
.... other ...
1
vote
3answers
66 views
ViewModel with related objects
Relatively new to .Net MVC. Stumped by what appears to be a very simple problem.
I've got a few objects that are related to each other.
(as an example)
public class Asset{
public int Id{get;set;}
...
-1
votes
0answers
50 views
Creating scaffold project .NET MVC4
i'm getting a problem to create a project using scaffold, i got create the controller and all views from that, but when i try to run the application I got this error:
An error occurred while ...
-2
votes
3answers
58 views
MVC4 - EF code first
I am learning code first approach.
I created a EbuyDataContext4.cs file with:
namespace Ebuy.Website.Models
{
public class EbuyDataContext4 : DbContext
{
public DbSet<Auction> ...
0
votes
2answers
79 views
Entity Framework / MVC Remove Item from Collection
What are some ways I can delete an item from a collection? (I am using MVC 4 and EF.)
As an example:
public class Birthday
{
public string Name { get; set; }
public virtual ...
0
votes
1answer
49 views
Localized Entities Using EF-Code-First
I’m using MVC with CodeFirst to create a multi-lingual website, and I’ve followed this tutorial ...
0
votes
0answers
102 views
Create CRUD Controller
I have split my mvc4 application in two projects. One main and one Model which is referenced in main project. However when I try to create a CRUD controller I get an exception in ...



