Tagged Questions
The fetching-strategy tag has no wiki summary.
12
votes
5answers
9k views
NHibernate Eager Fetching Over Multiple Levels
I have a 3-leveled hierarchy of entities: Customer-Order-Line, which I would like to retrieve in entirety for a given customer, using ISession.Get(id). I have the following XML fragments:
...
8
votes
3answers
2k views
Force an eager select in NHibernate
I am trying to eagerly fetch collections using selects, but all I am
getting is inner joins. What is going on?
Session.CreateCriteria(typeof(Foo))
.SetFetchMode("Bars", FetchMode.Select)
...
6
votes
1answer
880 views
Hibernate: batch_size? Second Level Cache?
I have a Hibernate domain object that gets loaded by different parts of the application. Sometimes it's advantageous to lazy load every association and others it's better to load the entire thing in ...
4
votes
1answer
402 views
How does Hibernate's batch-fetching algorithm work?
I found this description of the batch-fetching algorithm in "Manning - Java Persistence with Hibernate":
What is the real batch-fetching
algorithm? (...) Imagine a batch size of
20 and a total ...
4
votes
1answer
517 views
Is this the right way of using ThenFetch() to load multiple collections?
I'm trying to load all the collections eagerly, using NHibernate 3 alpha 1. I'm wondering if this the right way of using ThenFetch()?
Properties with plural names are collections. The others are just ...
4
votes
2answers
9k views
Is there a way to change the JPA fetch type on a method?
Is there a way to change the JPA fetch type on a single method without editing the entity object?
I have a shared ORM layer consisting of JPA entity classes. This ORM layer is accessed by two DAO ...
2
votes
1answer
26 views
Some queries regarding fetch strategies in hibernate and relation of fetchtype with fetchmode?
I have gone thru some of the links for hibernate fetch strategies on net.One brief and concise link i liked is
http://www.mkyong.com/hibernate/hibernate-fetching-strategies-examples/. We have four ...
2
votes
2answers
478 views
SetFetchMode call ignored
I have a problem with SetFetchMode call in Criteria API in following query:
DetachedCriteria.For<User>()
.Add<User>(u => u.Status == UserStatus.Live)
...
2
votes
2answers
742 views
How to set NHibernate Linq fetch strategy through a façade layer
I’m using NHibernate for data access, but accessing it through a façade layer. This layer consists of interfaces for the repositories, plus an IUnitOfWork interface which corresponds to the ISession ...
2
votes
1answer
657 views
How to change hibernate's default fetching strategy?
I know hibernate's default fetching strategy is LAZY for collections, is there a way to change the default fetching strategy system wide through configuration file?
1
vote
1answer
30 views
What is a Fetching Strategy?
I understand the core concept of retrieving data using different strategies. But I cannot find a good summary/definition..
Is it a design pattern? Does it fit within a broader design pattern?
Is it ...
1
vote
1answer
61 views
Fetch the smallest date of an object in CoreData
I'm having the same problem as this question, but the answer of @davedelong is not working for me.
When following the Apple Example, for fetching the smallest date in a set of object I get the ...
1
vote
1answer
281 views
Fetching strategy encapsulation for Entity Framework 4.1 and NHibernate
I created a project to test out NHibernate 3+ vs. Entity Framework 4.1, wrapping it in a repository, making it very testable using interfaces etc.
I do not want to expose either ORM outside of the ...
1
vote
1answer
763 views
Linq to NHibernate ThenFetch multiple properties
I've got this object graph:
// Lots of stuff omitted for brevity; these are all virtual properties and there
// are other properties which aren't shown on all classes.
class A {
B b;
C c;
...
1
vote
1answer
436 views
HIbernate fetch join issuing additional sql statements
Consider the following Parent class that has two ManyToOne references.
@Entity
@Table(name = "PARENT")
public class Parent {
private static final long serialVersionUID = 3730163805206219313L;
@Id
...
1
vote
1answer
357 views
Join two data tables from different source databases in .NET?
How do you join two data tables from different source databases in .NET? Ideally, I can craft two queries manually and simply join on a single field.
In this case, linked servers and scheduled ...
0
votes
1answer
27 views
iPhone: Algorithm for fetching required data and images from server only once
I have implemented an iPhone App that has FanWall in it where users are allowed to put their comments on FanWall screen and other users can comment on their comment or add new comments. It works fine ...
0
votes
0answers
57 views
how to define fetch profile in hibernate mapping on hierarchical entities
I have a class hierarchy like
class A
{
B b;
}
interface B
{}
class C implements B
{
}
class D implements B
{
}
In my hibernate mapping file for entity A, the defenition is like;
<any ...
0
votes
2answers
47 views
Hibernate ignores FetchType for Single Inheritance
I have 3 entities inheriting from another entity.
I'm using the strategy Single_Table
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
E.g. Class B,C and D inherite from A
On entity B I'm ...
0
votes
0answers
14 views
Java fetch source from https
For my android app I would like like to fetch app version from Google Market. How can I do that if webpage is https?
0
votes
2answers
50 views
Get eagerly collection of entities containing other eagerly got collections
I've got stuck on the M:N relation between entity and strings. An user can have more than one role and each role can be assigned to more than one user. Role is just a string. Roles are contained in ...
0
votes
1answer
309 views
NHibernate AliasToBeanResultTransformer & Collections
I would like to return a DTO from my data layer which would also contain child collections...such as this:
Audio
- Title
- Description
- Filename
- Tags
- TagName
- Comments
- ...
0
votes
1answer
261 views
Can I change the Fetch Mode in a Resultset from a DatabaseMetaData query?
I'm inspecting a Database using an DatabaseMetaData instance. I get all the information of the tables in the DB and I iterate all the Resultset without anyproblem.
At the end of the iteration, I want ...
0
votes
2answers
81 views
Grails automatic relational fetching
Is is possible to do automatic relation fetching in GORM / Grails?
class Person {
static hasMany = [cars : Car]
}
class Car {
static belongsTo = [owner : Person]
}
Then use this relation ...
0
votes
1answer
350 views
Entity Framework Set PreserveChanges to be default MergeOption
In a ASP.net mvc 2 project is there a way to set the default MergeOption to PreserveChanges for all entity types?
Currently i have a massive sub that sets all entity types mergeOption.
Thanks
0
votes
1answer
278 views
Nhibernate - Paging and eager loading entities
I have two entities, a team and an employee.
I want get a list of employees with eager loaded teams. The list has to be paged.
public PagedList<Employee> ...
0
votes
4answers
443 views
NHibernate: How to fetch an object without its child collections?
My objects of type Object1 contain List Children1 property.
I would love to get these objects without children.
Seems like detachedCriteria.SetFetchMode ("Children1", FetchMode.Lazy) should be the ...
0
votes
1answer
724 views
NHibernate: is there limitation of batch-size to 10 items?
I am having a problem with NHibernate (SQL Server 2000, if it matters).
It seems like NHibernate uses batch-size equal to 10 even if I specify 500 (but if I specify size less than 10, say 3 - it uses ...
0
votes
2answers
151 views
iphone tabbar where to load data?
I have two tabbar items(views) that use the same data, whats the best solution for getting the data?
Make two fetch request for the same
data in each view controller.
Make one fetch request in
...