Tagged Questions

1
vote
1answer
22 views

Database visualization tool

I just watched a session of PDC09 about new features of Entity framework in .NET 4. Video page: http://microsoftpdc.com/Sessions/FT10 in the video, (seek to minute 7) presenter u …
1
vote
1answer
42 views

Any form generator(from annotated javabeans) for swing?

I've seen several form generators(swing, web etc from javabeans) but cannot find them again. Help me with links please. PS generator is not designer, generator - generates ui semi …
0
votes
1answer
17 views

How do I Relate these 4 Tables

Trying to setup a simple Thread/Poll table mapping. Here is what I have: Threads table ThreadID (Primary Key/Identity Column) Polls table PollID (Primary Key, FK for Thread …
0
votes
2answers
37 views

C# Entity Framework Query…

I'm trying to figure out how to limit my child dataset to only include active records... // Here's what I have currently... m_BackLoggerEntities.Stories .Include("Spr …
0
votes
1answer
15 views

Entity Framework CreatedBy fields not updating

Using Entity Framework I have the fields: o CreatedOn (datetime) o CreatedBy (nvarchar(50)) o ModifiedOn (datetime) o ModifiedBy (nvarchar(50)) When I add data to my tab …
0
votes
1answer
9 views

MVC 1.0 + EF: Does db.EntitySet.where(something) still return all rows in table?

In a repository, I do this: public AgenciesDonor FindPrimary(Guid donorId) { return db.AgenciesDonorSet.Include("DonorPanels").Include("PriceAdjustments").Include("Donors").Fi …
0
votes
2answers
28 views

Cannot rollback ransaction with Entity Framework

I have to do queries on uncommitted changes and I tried to use transactions, but I found that it do not work if there are exceptions. I made a simple example to reproduce the prob …
0
votes
1answer
10 views

Entity framework - exclude list of values

Is there a way to exclude a list of values for an object attribute when querying the database through entity framework? I tried to be slick and pull this number: List< …
0
votes
1answer
51 views

NHibernate: set entity from transient object based on unique field

My application obtains transient objects. MyClass Id Name OtherData Mapping is like Id is identifier and Name has unique constraint in database. The transient object has n …
0
votes
1answer
32 views

Persisting the model bined object using Entity Framework

I'll try to keep this short and concise. I got my controller here... [AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(CustomObject myCustomObject) { ... } Where myCu …
0
votes
0answers
7 views

Navigation property name from RelatedEnd in Entity Framework

How do I get both source and target navigation property names for a given RelatedEnd?
-1
votes
2answers
37 views

Entity Framework - Many to many question

I have a table called ASB and a table called PeopleInvolved. There is a junction table called PeopleInvolved_ASB which simply contains an ASBID and a PeopleInvolvedID column. The c …
0
votes
1answer
37 views

ADO.NET Entity Generation Wizard Taking Hours

Hello, I'm currently working with Visual Studio 2008 and the ADO.NET Entity Data Model Wizard. I'm connecting to a MySQL database using the MySQL/Connector plug in available. I ha …
0
votes
0answers
2 views

MVC / EF Query — A better way?

Objective: Get a list of name|id pairs for a select list from table A where the id does not exist in a filtered collection of Table B records. Constraints: Using MVC 1.0, Entity …
1
vote
1answer
106 views

Views and Entity Framework

Hi all! I've created a view in my database which I would like to include in my entity model. However, when I try to update the entity model through VS 2008, a warning message infor …

1 2 3 4 5 12 next
15 30 50 per page