Hi im really new to llblgen and was wondering how to do this simple task.. sigh
currently I'm grabbing this row by row field.id = 1, but rows can be moved and deleted and i will always want the first row so how do i grab the first row always in llblgen ?
InternalSystemDefaultsEntity systemDefaultsEntity = new InternalSystemDefaultsEntity();
//___________________________
// create required filters
RelationPredicateBucket predBkt = new RelationPredicateBucket();
IPredicateExpression predExp = new PredicateExpression();
//get collection then get first row ** needs changed !!
predExp.Add(InternalSystemDefaultsFields.InternalSystemDefaultId == 1);
// predExp.Add
predBkt.PredicateExpression.Add(predExp);
return systemDefaultsEntity;