0
votes
1answer
16 views
Undelete an entity marked as EntityState.Delete?
Hello, instead of talking let me talk with code:
Dim Contact = Context.Contacts.Include("Phones")
Dim phone = Contact.Phones(0)
Contact.Remove(phone)
How do I refresh the contex …
2
votes
1answer
53 views
How do I use Navigational Properties as Primary Keys in Entity Framework (.Net 4.0)?
I'm trying out the Model First approach introduced in Entity Framework with VS2010/.Net 4.0, and now I don't really know how to do this. I start out with the following Entities:
C …
0
votes
1answer
34 views
How to count and display objects in relation ManyToMany in Django
Hi!
I have a simple model with news and categories:
class Category(models.Model):
name = models.CharField()
slug = models.SlugField()
class News(models.Model):
categ …
0
votes
1answer
20 views
cannot geocode in other browser
Hi I created a mashup where a user can enter a location.When using IE7 almost all the location can be geocoded but not with other browsers......what do you think is the issue here …
0
votes
2answers
41 views
Many to Many relationship with Fluent NHibernate
Hi! I'm getting the following error: "Can't figure out what the other side of a many-to-many should be."
Team Entity:
public class Team : IEntity
{
public int Id { get; set; } …
0
votes
1answer
273 views
Rails has_and_belongs_to_many join across 3 tables
I have a three models: listing, category, and site. There is a many to many relationship between listing and site and there is a many to many relationship between listing and cate …
0
votes
2answers
26 views
delete hibernate entity without (attempting to) delete association table (view) entry
Entity A and B have a many to many relationship using link table AtoB.
If Entity A is deleted, the related links are deleted by hibernate. So far so good.
My problem is that my l …
0
votes
2answers
35 views
Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
I have the following Django models: -
class Company(models.Model):
name = models.CharField(max_length=50)
is_active = models.BooleanField(db_index=True)
class Phase(mode …
0
votes
0answers
18 views
In nHibernate, can I map an abstract base class to a collection?
I have a base class for content items in a CMS I'm building. It's currently marked abstract because I only want derived classes to be instantiated. Derived classes like BlogPost, …
1
vote
3answers
50 views
select_related() and many to many fields with ajax (Django)
I have a simple view that I want to respond to both ajax and regular HTTP requests. Simplified, it looks like this:
def tag_search(request, tag):
items = Item.objects.filter( …
2
votes
1answer
69 views
How can an indexed many-to-many set be mapped in NHibernate?
Consider an entity, Entry, that contains a collection of another entity (many-to-many), Category, such that the Entry can be associated with a given Category no more than once (imp …
0
votes
1answer
45 views
Visual Studio 2008 Class Designer - many to many associations
Hi!
Is there a trick for visualizing a many to many assocation in the Visual Studio Class Designer?
I have an Employee entity and a Team entity. So each entity has a list of his c …
0
votes
3answers
59 views
Django: Exclude on a many-to-many relationship through a third table
I have a problem making "exclude" querys on tables which have a many-to-many relationship through a third table. I have a table with projects, a table with people and a relationssh …
1
vote
1answer
34 views
LINQ to SQL testing
Hi
I'm using Linq to sql to access an SQL Server.
I try to write all my database queries in a partial class so they can be accessed directly from the DataContext.
Now I would like …
2
votes
7answers
57 views
Server Or Database
Hi guys I need your opinion.I am in a situation where I need to use ajax so I need to query users info every 30 seconds.....which is more efficient query the server first(say check …
