LLBLGen is an Object Relational Mapper (O/RM) for .NET. With it you can generate your data access layer for multiple O/RM frameworks (LLBLGen Pro Runtime Framework, Entity Framework, Linq to Sql, and NHibernate 2.x / 3.0 (hbm.xml and FluentNHibernate)).

learn more… | top users | synonyms

0
votes
0answers
15 views

LLBLGen TypedConstantExpression can't be converted to SetExpression

We were experiencing issues with using over 2100 elements in a contains LINQ expression, so I have rewritten the query to insert the values previously used in the contains comparison into an ...
0
votes
1answer
12 views

How to return an EntityBase2 from a string?

I have a ListBox that is populated with my entity names, i.e. A1AllocationHelp1Entity On select I need to pass that string name to get an EntityBase2 type. I can get it using reflection: Public ...
0
votes
1answer
24 views

SD.LLBLGen.Pro.DQE dll missing. From where can i get it?

I have a project which uses "SD.LLBLGen.Pro.DQE.OracleMS.NET20" reference. I did some blunder and it's missing now. I am getting Build Error:- The type or namespace name 'Oracle' does not exist ...
0
votes
2answers
71 views

Linq to Objects to query LLBLGen projection

I'm trying to use the recommended LLBLGen syntax to query a projection ...
0
votes
1answer
63 views

Left outer join using LLBLGEN

How i can perform left outer join in the following table Product table - productId (pk) - productTitle - pDescription Product Status - statusId (pk) - productId (fk) - comment I need to select ...
0
votes
2answers
115 views

Best OR/M for use with Interfaces

In our next project we have a need for using interfaces like this (Example code) public interface IFoo { string Name {get; set;} IList<IBar> Bars {get; set;} } public interface IBar { ...
0
votes
1answer
55 views

llblgen AND-OR operators presendence AND-OR

I want to generate the llblgen form of sql statement below select * from sometable where c1=4 AND ( c2 <> 'true' OR c2 IS NULL ) But I can't get the exact filter option operator AND has ...
0
votes
2answers
77 views

LINq query throws exception

I am running the following query var allroles = from l in metaData.Role select l.RoleId; var personroles = from k in metaData.PersonRole where k.PersonId == new ...
1
vote
1answer
62 views

Overriding LLBLGen Save() with custom columns

In our program, there are about 50+ Entities in LLBLGEN. All of them have 2 columns called ModifyDatetime and ModifyUserID. They are also the last 2 columns on each table on an SQL database. We want ...
0
votes
0answers
102 views

LLBLGen - prefetch entity on specific condition

I'm having a issue prefetching an entity. Issue involves three tables: Bills, Account Address, and Sources. The bills and Account Address table are related to one another via SiteAccountID, and both ...
0
votes
1answer
94 views

Llblgen update table?

Simply i wanna know update table set (name,surname) values ('John','Locke') where Id=1 sql statment equivalent in llblgen, i tried below code but it didn't work. Entity e = new ...
1
vote
1answer
105 views

Using ViewModel with LLBLGen

I am using MVC 3 and LLBLGen. I am confused about approach on populating ViewModels that have data coming from multiple tables. How would i display the Foreign Key names instead of just ID? I don't ...
0
votes
1answer
144 views

NHibernate VS LLBLGen Pro [closed]

This was the original question. nHibernate versus LLBLGen Pro After three years, things have evolved. now we have: FLUENT NHibernate NHibernate LINQ LLBL Gen Pro generate FLUENT NHibernate ...
0
votes
3answers
53 views

Joining SQLsingle query

select * from ProjectFeature pf inner join ProjectArea pa on pa.AreaId = pf.AreaId inner join Project p on p.ProjectId = pa.ProjectId where (p.ProjectId=175 AND pf.FeatureStatusTypeId=2 AND ...
0
votes
0answers
76 views

EntityCollection AddRange method takes too long

I'm using LLBL Gen pro 2.6, having a list of, let's assume,OrederEntity I want to add it to a customer's Order propery which is an EntityCollection, using AddRange method of EntityCollection it takes ...
0
votes
1answer
105 views

LLBLGenProQuery Vs IQueryable

I am using LLBLGen Pro, MVC 3 and VB.NET. I am trying to return an object of Iqueryable but i am getting following exception Unable to cast object of type ...
1
vote
1answer
332 views

Using Automapper to return IQueryable

I am trying to return an IQueryable object in one of my functions and using mapping (Automapper). It manage to return an IEnumerable object fine but as soon as i try to return an IQueryable object it ...
-1
votes
1answer
156 views

Using Linq with LLBLgen Pro [closed]

I am trying to do the following using MVC3, LLBLGEN PRO and it's throwing me the following error: Mapping types: LLBLGenProQuery1 -> LLBLGenProQuery1 ...
0
votes
1answer
57 views

LLBL Linq variable number of joins

I'm using the Linq syntax for LLBL. I have a need to join to a particular table a variable number of times. I have a query that does work, but I'm trying to make it faster. I have the raw SQL, but I'm ...
0
votes
0answers
57 views

What is the benefit of using only the 'Controller' part of MVC?

What possible benefits can one derive by using only the controller part of MVC in a service oriented architecture pattern. The database access layer, created by LLBLGen Pro, is manipulated without ...
0
votes
0answers
45 views

How to take advantage of SQL CTEs via LLBL Gen Pro

I have a hierarchical grouping structure stored in database, to manipulate these records I come to this SQL query taking advantage of recursion with CTEs to achieve my desired result : ;with ...
1
vote
1answer
172 views

LINQ - Left Outer Join with multiple parameters in Where clause

How can I do this SQL query in LINQ: select * from chat c left outer join lead s on c.key = s.id where (typeId = 5 AND c.key = @clientId) OR (c.typeId = 4 AND s.clientId = @clientId) Or this SQL ...
0
votes
0answers
69 views

LLBLGen 1:0..1 relationships using SQL Server

I would like an entity that that a 1:0..1 relationship, 1 to (0 or 1). I generate the database, with a unique constraint on the column id. ALTER TABLE Person ADD CONSTRAINT [UC_AddressId] UNIQUE ...
2
votes
3answers
258 views

Is there any way to do a Insert or Update / Merge / Upsert in LLBLGen

I'd like to do an upmerge using LLBLGen without first fetching then saving the entity. I already found the possibility to update without fetching the entity first, but then I have to know it is ...
1
vote
0answers
117 views

examples of llblgen catalog name switching?

Everyone touts the wonders of llblgen, but I've found very little in the way of examples of its usage in c#. The documentation for llblgen explains how much you can do, but provides virtually no ...
0
votes
1answer
106 views

Cannot switch a connection string in LLBL Gen Pro

I have two databases with the same schema inside a Sql 2008 R2 Server, of which names are Database1 and Database2. I connected and performed queries on the Database1, and then changed to Database2 to ...
0
votes
1answer
154 views

LLBLGen default variable field values reads not null but are null

I have an LLBLGen entity. MyEntity{ public Decimal Foo; //Stored in database as a NOT NULL field } .... public void SomeMethod(){ MyEntity entity = new MyEntity(); //on initial inspection ...
1
vote
0answers
57 views

LLBLGen Template Binding test for date type

In the LLBLGen Template Bindings Viewer, I want to check if a field is a date type, and if so, do an action I have similar, that checks for a string type: <[Foreach EntityField]> <[If ...
1
vote
2answers
316 views

LLBLGen viewing generated SQL statement

I'm using LLBLGen to access a SQL Express database using LLBLGen runtime framework. Using Visual Studio 2010. I have created a predicate expression, however It does not seem to be doing what I ...
0
votes
1answer
90 views

Why does MVC call set methods on my model when my string is too long?

In an ASP.NET MVC application, I have a model defined as follows: public class TestModel { private string _firstName; [DisplayName("First Name")] [StringLength(20)] public string ...
1
vote
0answers
198 views

How to load distinct items into llblgen pro collection

I have a collection like the code below. I load all items from table. How to load just distinct items on specific field? var objlogcollection = new ClsfIcdNineToClsfIcdTenDiagnosisCollection(); ...
0
votes
1answer
120 views

ORM: LLBLGen projects and others

ORM: nHibernate and LLBLGen and others... In LLBLGen you define all your database under a single project, im not sure if you are suppose to define all your database under a single project or define ...
0
votes
1answer
513 views

SELECT TOP 100 with JOIN using LLBLGEN

I am using LLBLgen as ORM and want to achieve the following: Table1: SessionId Table2: SessionId Timestamp SELECT TOP 100 * FROM Table1 INNER JOIN Table2 ON Table1.SessionId = ...
0
votes
1answer
123 views

How to eliminate race condition during db transaction - read row count from db, calculate input, then insert value to db?

Scenario: A save function first reads the total number of rows from a table in the db. Based on the number of rows, a unique input value is calculated. This value is included in the row that is then ...
0
votes
2answers
146 views

Unable to attach SQL Server CE 3.5 database to LLBLGen Pro

I have the .sdf for SQL Server Compact Edition database of Northwind, I'm trying to attach it to llblgen pro but it refuses to connect, in the 'database drivers' drop down I've selected SQL Server ...
0
votes
0answers
92 views

How to Get Distinct Records from LLBL Generated Entities…

I am very new to using LLBL pro generated clasees. I have a simple problem to getting Distinct records based on FK from an Entity. I don't know, how can I achieve this. Anyone have idea on this ? ...
0
votes
1answer
302 views

Could I use LLBL Gen to JOIN columns between tables which don't have a relationship of primary-foreign keys?

I have the following DB structure Table1( ID1,Col1,Col2) and Table1( ID2,Col3,Col4) Table1 and Table2 are separate table and don't have any relationships between them. and I would like to achieve ...
1
vote
0answers
316 views

Best OR/Mapper to choose [closed]

I am starting a new project and i want to choose a good OP/mapper.what is the best OR/Mapper in dot net. I test Entity Framework 4.1 and Telerik OpenAccess .and i hear about Nhibernate and LLBLGEN. ...
0
votes
1answer
288 views

Domain Driven Design with ORM

i am designing the object model an application and there is certaint level of impedance mismtach between objects and tables. For example I have : Product ----------- ProductId, ProductTypeCode, ...
2
votes
2answers
311 views

How to aggregate a collection of items in one cell of an ASPxGridView

I'm using ASP.NET 3.5, LLBLGenPro 3.0, and DevExpress 10.1.7. I have an ASPxGridView with a LinqServerModeDataSource. Each row of the ASPxGridView corresponds to a TaskEntity from LLBLGenPro. One ...
3
votes
2answers
372 views

Slow subquery IN clause?

I'm having a number of slow prefetch queries in LLBL. Here's a simplified version of the generated SQL: SELECT DISTINCT Column1 FROM Table1 WHERE Table1.Table2ID IN ( SELECT ...
0
votes
1answer
324 views

LLBLGen - Select against an entity-collection in memory

How can I retrieve, say, all the lineitems for all orders in a customer object? I am trying grdView.DataSource = customer.Orders. but after orders, all I get is "GetMulti"...I don't see the ...
0
votes
1answer
72 views

Is there any way to get LLBLGen Pro to generate the generic and dbspecific .csproj files in separate directories

LLBLGen Pro by default generates the generic and db specific project files in the same root directory. I'm trying to make my model projects use NuGet for dependancy management and this breaks/starts ...
1
vote
1answer
109 views

LLBLGEN - Fluent NHibernate

How do I get LLBLGEN to output to POCOs instead of .hbm.xml files? 1) I have selected the Framework as NHibernate but there does not seem to be any settings in the project properties to change the ...
0
votes
1answer
328 views

how to Return first row using llblgen

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 ...
6
votes
1answer
503 views

T4 For Generating POCOs Over LLBLGen Pro Entities?

As I understand it, LLBLGen Pro cannot generate POCOs over it's own entities (see here: http://www.llblgen.com/Pages/featuresLLBLGenPro.aspx). Has anyone written a T4 that will generate POCO classes ...
1
vote
2answers
544 views

How to execute a custom sql statement in LLBLGen 3.1 (self servicing)?

Using LLBLGen 3.1 (Self Servicing) on SQL Server, how would one execute custom SQL, such as: delete from UserPreference select * from UserPreference (into a datatable, for example)
1
vote
0answers
146 views

C# Dynamically Delete Relations Using LLBL

Just looking for a little help concerning LLBL and deleting related entities. I am in the process of creating a common code base and am looking to reduce the dependencies of our current Data Access ...
1
vote
1answer
165 views

Using LLBLGen Pro strictly as a designer for EF4

First of all - I'm fine with how EF4 works. My main concern right now is the ability to scale when I get over 100+ tables. Ideally the schema needs to be kept under the same data context. If I have to ...
0
votes
2answers
539 views

Error deploying SharePoint 2010 solution - Cannot create more than '500' IEntity objects per ILobSystem object

I am generating a sharepoint 2010 bdc model xml file along with the entities and associated service classes from a model 1st LLBLGen framework/ C# .net 3.5 project. All was going well when suddenly I ...

1 2 3