The ef4-code-only tag has no wiki summary.
0
votes
0answers
11 views
EF Code First Alternate Foreign Key with One to Many relations
I have a EF 4 code first application.
I have two related POCO objects and their mappings:
public class Pipeline : MetastormModelBase
{
#region Fields
private String _eFolderid;
public ...
2
votes
2answers
947 views
Inherit a common base class in EF code first
I'm converting my EF POCO project to Code first. I had changed the T4 template, so that all my entities use a base class, EntityBase, that provides them with some common functionality that is not ...
0
votes
2answers
130 views
Obtaining List of Entities in DataContext
What would be the best way to obtain the list of entities loaded in a given EF 4.1 DbContext? I have been unsuccessful in attemps to locate a collection of DbEntityEntry.Entity objects loaded for a ...
0
votes
1answer
541 views
Get list of changed properties on EF 4.2 Code Only
(sorry for my bad english)
Hey, I need to log all changes that happens on my database for auditing purposes. When I insert or delete a entity, it is easy but when I update something, I need to save ...
0
votes
1answer
75 views
Is it possible to map a collection of value objects with EF4.x?
I can't find a way to map a value object collection, is it possible?
public class AnEntity
{
public int Id {get;set;}
public ICollection<Guid> Values {get;set;} // <-- this
}
...
2
votes
1answer
231 views
Anonymous type with Linq to Entity(EF 4.1)?
Suppose I want to fetch data into an anonymous object (i.e. fetch data from two or more tables and store it in a variable) at some part of my application development with a Linq to Entity query. Later ...
0
votes
0answers
537 views
Update two tables with single VIEW(MVC) with One to many relationship( Entity Framework 4.1 code first)
I have a company entity which references a collection of packages . And Now i want to create a new company such that it would hold multiple or single package I have 3 Entity set in my EF ...
1
vote
1answer
270 views
EF Code-Only: Invalid object name 'dbo.BuildVersion'
I'm trying to set up an EF Code-Only scenario with the AdventureWorksLT database but it doesn't work.
I have this error:
Invalid object name 'dbo.BuildVersion'
The error comes from an ...
2
votes
1answer
623 views
Intercepting and logging changes with EF 4.2 code first
I spent some time reading a few posts and articles about audit tracking but still can't figure this out.
What I need is a pretty basic audit system that will give me results such as:
Customer "John ...
2
votes
3answers
367 views
Lazy Loading not working
I'm having trouble using EF Code first 4.1 and am probably not understanding something.
My understanding is that by marking relationships (whether collections or single objects) as virtual, they will ...
2
votes
1answer
121 views
EF4 code first many to many relationship to external entity
Problem
I've got two classes:
OfficeProfile: exists within my EF model
BusinessUnit: comes from an external source, e.g. a web service
There is a many to many relationship between office ...
4
votes
1answer
232 views
How to manage EF 4.2 associations in WCF based scenarios
I am working on an enterprise application which will consist of a rich WPF client which talks to a bunch of webservices to retrieve data. This data are POCOs, created with Code First EF 4.2.
I am ...
0
votes
1answer
118 views
EF Code Only Inheritance on the client
(sorry for my bad english)
In a Silverlight 4 + RIA Services + EF4 Code Only application I have some classes on my DbContext that contain a "IsActive" field - I want to know from the client if a ...
1
vote
1answer
149 views
Is there a “database level” method of stopping EF 4.2 adding spaces to autogenerated table and column names?
I'm using Entity Framework 4.2 in code-only "mode". I'm letting it autogenerate my database from the model.
However, it's adding spaces to my table and column names based on title-casing - e.g. a ...
2
votes
2answers
1k views
entity framework 4.1 code first and auto mapper issue
Consider this simple Model and ViewModel scenario:
public class SomeModel
{
public virtual Company company {get; set;}
public string name {get; set;}
public string address {get; set;}
...
0
votes
2answers
96 views
How to add entity to multiple tables?
I have 2 tables in my DB: Students and StudentsHistory. The idea is that every change in the Students table must create a new record in the StudentsHistory table (e.g. when I edit a student, 2 ...
2
votes
1answer
752 views
DbContext SaveChanges Order of Statement Execution
I have a table that has a unique index on a table with an Ordinal column. So for example the table will have the following columns:
TableId, ID1, ID2, Ordinal
The unique index is across the columns ...
1
vote
1answer
377 views
Access DbContext from IQueryable
I am trying to implement a caching pattern which may need to utilise Redis. The problem with this pattern is that I need to disable Configuration.ProxyCreationEnabled and then re-enable it afterwards ...
7
votes
3answers
4k views
XML data type in EF 4.1 Code First
I would like to use SQL Server xml type as a column type for an entity class.
According to this thread it's possible to map such a column to string type:
public class XmlEntity
{
public int Id { ...
1
vote
1answer
1k views
How to accept JSON in a WCF DataService?
I'm trying to understand how to use WCF Data Services (based on EF 4.1) to create a restful web service that will persist entities passed as JSON objects.
I've been able to create a method that can ...
0
votes
0answers
48 views
EF4 Many-to-Many mapping
First: I'm developing this using EF4 code first and using poco objects
I have an issue which I haven't been able to find a good solution for. There might be that my data model should be re-evaluated, ...
1
vote
1answer
571 views
EF Linq Query Collection with an eager loaded child-collection
I'm using EF4.1 code first,
I'm trying to to create a query which returns a collection with an eager loaded child-collection.
Both has to be ordered by Position and IsActive == true
These Classes ...
4
votes
1answer
1k views
How do I map a char property using the Entity Framework 4.1 “code only” fluent API?
I have an object that has a char property:
public class Product
{
public char Code
{
get;
set;
}
}
Entity Framework doesn't seem to be able to map chars (this field is ...
4
votes
2answers
104 views
Data Loading Strategy/Syntax in EF4
Long time lurker, first time posting, and newly learning EF4 and MVC3.
I need help making sure I'm using the correct data loading strategy in this case as well as some help finalizing some details of ...
1
vote
2answers
397 views
How to reuse part of Linq to Entity Select expression in EF4.1 code only scenario
Here is very simplified version of code that i have:
class PrintJob : IEntity
{
public string UserName { get; set; }
public string Departmen { get; set; }
public int PagesPrinted { get; ...
2
votes
0answers
598 views
WCF Data Services and Entity Framework 4.1 Complex Types
I'm using WCF Dataservice to get my entities from DbContext. My Entities have a complex type which contains some metadata (DateTime and Guid properties).
Here is my code:
var uri = new ...
0
votes
1answer
672 views
WCF Data Service and Entity Framework proxy objects
I have a question regarding WCF DataService and Entity Framework 4.1 (code-first).
So I have a DataService on web server:
[ServiceBehavior(IncludeExceptionDetailInFaults = true)]
...
1
vote
1answer
374 views
Is there a T4 template to generate EntityTypeConfiguration from EDMX?
I'd like to go "code-only" from a mix of designer/code-first. I know it's possible to make a T4 template to generate the EntityTypeConfiguration classes and property mappings, but is there something ...
3
votes
5answers
2k views
Code-First EF4.1 + SQL Server CE4 + Sync Framework
Is it possible to use CF EF4.1, SQL Server Compact 4 and Microsoft Sync Framework together?
As I got, MS Sync Framework needs SQL Server compact 3.5, but EF4.1 use SQL Server Compact 4...
UPDATE
...
0
votes
1answer
32 views
How do I do a IN in EF 4 CTP5
Or If I have a list of Customers, how do I find all orders for all of the customers in my list. A single .Where(o => o.CustomerID == mycustomerID) is only giving me orders from one of my customers. I ...
4
votes
0answers
399 views
EF4 Selftracking Entity
I'm wokring on building dataAcess layer for my application I'm using EF4 Self tracking entities I build entities quit well now I have to seprate self entities to their files so I can use for N tiers.
...
1
vote
1answer
409 views
Fluent API, EF 4.1: a problem of inheritance and foreign key
There are several simple classes:
The first class:
public class User
{
public int UserId { get; set; }
public string Username { get; set; }
// ...
public ICollection<Topic> ...
0
votes
1answer
472 views
EF 4.1 Code First adding to a foreign key collection
If I have an entity with a collection property for another entity. What is the best way to add a new entity and it's related entities? The problem I have is that the collection is initially null.
...
2
votes
1answer
812 views
Mocking DbEntityEntry.CurrentValues.SetValues() in EF4 CTP5 Code First
I am trying to use the DbEntityEntry.CurrentValues.SetValues() method to facilitate updating an existing entity with values from a non-entity DTO (see: ...
1
vote
1answer
222 views
load partial entityset ef4
Can I load only a few properties from an Entity?
As an example I have an entity with the following properties:
ID
DESCRIPTION
HEADER
PICTURE
I only want to load the IDs and not the other ...
0
votes
1answer
252 views
EF4 test if collection or related entity is proxy for self-tracking entities
All,
I'm starting out with Entity Framework 4 (not CTP5 yet) and am looking at the complexities of migrating NHibernate to EF.
Some code we have tests if a collection or related entity is a proxy ...
25
votes
2answers
6k views
using Guid as PK with EF4 Code First
I have this class and table:
public class Foo
{
public Guid Id {get;set;}
public string Name {get;set;}
}
create table Foo
(
id uniqueidentifier primary KEY DEFAULT (newsequentialid()),
name ...
1
vote
3answers
463 views
Have a problem with EF 4.0 and ObjectStateManager (i think)
I have a serious problem, i have an unique key on field in db, I use Oracle(Devart Provider).
First time i preform an Insert -> (_objectSet.Add(entity)) via my repository it's ok,
BTW: I use Code ...
0
votes
3answers
738 views
EF4 Code only ctp5: how set connectionstring devart oracle?
hi i have devart oracle provider 6(BETA), and want use code only ctp5...how i can set connectionstring for oracle?i started now with Code only and i need use oracle, anyone can help me?
5
votes
2answers
1k views
Entity Framework CTP 5 One to One mapping
I have two tables:
Requirement
RequirementId - PK
Fixture
FixtureId - PK
RequirementId - FK / NULLABLE / Unique Constraint
A Fixture can only have 1 Requirement, no other Fixture should be able ...
1
vote
2answers
104 views
Why doesn't Entity Framework add a “where” to the SQL generated when SingleOrDefault is used?
I'm using Entity Framework CTP 5 with "code only" (with SQL Server 2008). I have an entity returned from a DbContext that I then access a child collection from, and select one item from it. Here's my ...
7
votes
4answers
3k views
How do I get the raw SQL underlying a LINQ query when using Entity Framework CTP 5 “code only”?
I've using Entity Framework CTP5 in "code only" mode. I'm running a LINQ query on a object that was return from the database, as the query is running really slowly. Is there any way in which I can get ...
0
votes
1answer
74 views
From what information is EF4 Code first building the conceptual model
As I understand Code First is building a model to work with EF4 in memory and where you can fine tune your mappings and stuff.
Based on what information is this model being build?
You see I have an ...
0
votes
1answer
421 views
Base classes and parent/child relations in Entity Framework Code First
Hi I've run into a problem with Parent/Child Relations between abstract baseclasses and their implementations
public class SuperParent
{
public ICollection<Parent> ParentList { get; set; }
...
3
votes
2answers
759 views
EF4 CodeFirst CTP5 nvarchar(max) via attribute
Is there a way to create a custom attribute that will make EF CodeFirst use nvarchar(max) as datatype when assigned to a property of a poco class? I know this is possible via fluent api, but we would ...
2
votes
1answer
349 views
code first CTP5 error message
I get the following error message with a new project I have set using code first CTP5. Can't find anything on the web about it. Has anyone encountered this error message?
The context cannot be ...
2
votes
3answers
450 views
Retrieving an Entity Object by name - LINQ to Entities, EF 4.0
I have a number of entity objects that are structurally the same but the naming convention is different e.g Products1, Products2, Products3 (this is part of the legacy db schema and I can't do much ...
0
votes
1answer
207 views
How to add a table to the EF4 Context dynamically in code - No Code First
We run a series of reports every 6 months and store the results to tables that can be queried/viewed at any time in the future. Depending on the cycle either two or four tables will be added. They ...
0
votes
1answer
225 views
What's wrong with this ASP.net MVC system design?
I have a ASP.Net MVC 3 photo gallery, which is designed in this way:
Data Repositories(IImageRepoSitory, ITagRepository etc)
|
Services (IGalleryService, IWebService etc)
|
Web ...
3
votes
2answers
595 views
How can I map an array property to a delimited string db field using EF?
I have an object with an array property that I want to persist in the database as a delimited string. How to I Map that property to the field in the database and vice versus?
public class User() {
...