In Code First DbContect we can simply avoid using fk properties with that fluent mapping:
modelBuilder.Entity<Parent>().HasMany(parent=>parent.Children).WithRequired(child=>child.Parent);
Is this enough or DevForce needs this fk properties for it's internal infrastructure? Are additional benefits of using fk properties present?