Questions tagged [llblgen]

LLBLGen Pro generates a complete data-access tier and a business objects tier, utilizing powerful O/R mapping technology and a flexible task-based code generator.

83 questions
0
votes
1 answer

LLBLGen Pro: How to implement INSERT INTO... SELECT statement

I want to batch insert records with LLBLGen, following is T-SQL: INSERT INTO Role(idt1) SELECT idt2 FROM template WHERE templateid = 1 How can I do this?
guaike
  • 2,471
  • 9
  • 31
  • 42
0
votes
1 answer

Asp.net 3.5 NTier Architecture

I am building a web application using asp.net 3.5, sql server 2008. My client wants it to be in minimum 3 tier architecture(Tiers are seperated physically, means 3 tiers means 3 seperate machines). User Interface Tier: All the pages will be deployed…
Shax
  • 4,207
  • 10
  • 46
  • 62
0
votes
1 answer

LLBLGen Pro 5.0 caching with EntityCollectionBase.GetMulti()

I'm using LLBLGen 5.0 and EntityCollectionBase.GetMulti(filter, relation) to retrieve objects in oracle database. ObjectCollection objects = new ObjectCollection (); RelationCollection relationsToUse = new…
RG.
  • 3
  • 2
0
votes
2 answers

llbl stored procedure

I have a problem on llbl. I have a stored procedure in my sql database and I want to get the stored procedure code in code(C#) side with llbl. Sql Code: SELECT ROUTINE_DEFINITION FROM INFORMATION_SCHEMA.Routines WHERE ROUTINE_Name =…
John
  • 386
  • 1
  • 7
  • 22
0
votes
0 answers

Implement client server architecture with WCF for a project that has used LLBL gen pro 2.6

I have a project that was developed using LLBL GEN PRO 2.6. Its Self Hosting method is used for the project. UI has also used the DAL(LLBL GEN PRO auto generated set of class which does most of the Business layer and 100% of the Data Access Layer…
0
votes
0 answers

LLBL Gen Pro Layer Exposed by WCF via DTO

I want to refactor existing windows application by introducing WCF layer in between UI and BAL. It is used LLBL Code Gen Pro as ORM tool and it uses SelfServing method to communicate with a database. I want to introduce WCF layer but cant change…
KDS
  • 99
  • 1
  • 16
0
votes
1 answer

LLBLGen: Auto generate DTO files

In my project I am using LLBLGen as ORM. I am able to generate entity objects for all the tables present in database but respective DTO objects are not getting generated automatically for all the table. I have to manually select each table and…
SKS
  • 220
  • 3
  • 12
0
votes
0 answers

Can LLBLGEN return a dictionary-like object of the data in a database?

Can LLBLGEN return a dictionary, where each key is the primary key a row, and each value is an object representing the data of a row. For example var customers = new EntityCollection(); using (var adapter…
JRG
  • 210
  • 1
  • 10
0
votes
1 answer

Generating entity files into folders per schema with LLBLGenPro for NHibernate

We have a DB with multiple schemas with the same tables in the different schemas. Using LLBLGenPro to generate NHibernate entities. However, LLBLGenPro falls over, complaining that there are duplicate table names. What we want is for the entities to…
Jacques Bosch
  • 2,165
  • 3
  • 25
  • 36
0
votes
2 answers

LLBLGEN related array not populating in entity

i'm struggling with LLBLGEN and i guess ORM's in general. i have created an entity, lets use a library example to explain: i want to display a book object and also return a list of users who have loaned the book. so i need to return the book object…
nologo
  • 5,918
  • 3
  • 36
  • 50
0
votes
1 answer

Generic Entity/Collection Fetching with LLBLGen DataAccessAdapter?

I have a form, which needs to have drop downs (Text and Value) populated from a database I'm accessing with LLBLGen DataAccessAdapter. I'm using Telerik, if this provides any additional useful information or options. Is there a way to do this…
Nol
  • 344
  • 3
  • 15
0
votes
1 answer

LLBLGen Pro with Entity Framework 4?

I am doing a small study about what ORM to use for our next project. I have narrowed down to LLBLGen Pro / EF4. My question is: I am more convinced about EF4. Should we use EF4 alone or should we purchase LLBLGen Pro and select EF4 as target…
muruge
  • 4,083
  • 3
  • 38
  • 45
0
votes
2 answers

LLBL: Can I use the DatabaseGeneric project with multiple DBSpecific projects

I'm using LLBL in a solution for both MS SQL Compact and "regular" MS SQL 2008.. I'm wondering if it's ok to use the same DatabaseGeneric project (generated by LLBL) & reference it from the 2 DBSpecific projects (generated by LLBL) targeting…
Shady M. Najib
  • 2,151
  • 2
  • 19
  • 30
0
votes
2 answers

Redefine method return type in derived class without generics

TL;DR: Is there some way to add an abstract method to a base class that allows derived classes to override the method's return type, without the use of generics, and without the use of the new keyword? I'm working on developing some custom…
cmptrgeekken
  • 8,052
  • 3
  • 29
  • 35
0
votes
2 answers

LLBGen for dummies

I have an "opportunity" to work with LLBLGEN ORM, I have already spent two days on trying to query a JOIN command over several tables (without any success). Now at home I also trying to understand the logic of this ORM on smaller project (ie.…
Jaroslaw Stadnicki
  • 1,178
  • 1
  • 8
  • 17