Related Threads :: I'm not looking for DDL or Custom Fields, but they're related ideas.
Custom Fields
http://llblgen.com/TinyForum/Messages.aspx?ThreadID=8636&HighLight=1
which points to
DDL at runtime with LLBLGen
http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=8232
If I have generated LLBLGen code, and some time later, a new table is created, it would be great if LLBLGen could access it at runtime, without regenerating.
I'm not even caring about relations at this point, just generic access.
Something like...
EntityCollection genericEntities= new EntityCollection( new GenericTableFactory( "TableName" ) );
IPredicateRelationBucket filter = new PredicateRelationBucket();
/// setup filter
adapter.fetchCollection(genericEntities, filter, count);
foreach(GenericEntity genericEntity in genericEntities )
{
string fieldValue1 = genericEntity.Fields["fieldValue1"];
string fieldValue2 = genericEntity.Fields["fieldValue2"];
string fieldValue3 = genericEntity.Fields["fieldValue3"];
// do whatever else with the genericEntity using Fields Indexer
}
I'm pretty sure this isn't available today, but is it in the works, or even in the thoughts of the LLBLGen Architects?