Tagged Questions
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)).
20
votes
9answers
5k views
nHibernate versus LLBLGen Pro
I am trying to work out with ORM tool to move over to and have narrowed it down to two candidates.
nHibernate or LLBLGen Pro
Please can you guys give me pros and cons in using both these tools ...
8
votes
2answers
4k views
How to Design Data Transfer Objects in Business Logic Layer
DTO
I'm building a Web application I would like to scale to many users. Also, I need to expose functionality to trusted third parties via Web Services.
I'm using LLBLGen to generate the data access ...
6
votes
4answers
824 views
SQL query slow from .NET code, but not interactively
We are using an ORM that is executing a call from .NET to SQL Server's sp_executesql stored procedure.
When the stored proc is called from .NET, we receive a timeout exception.
Looking at Profiler, ...
5
votes
7answers
210 views
Should I be concerned that ORMs, by default, return all columns?
In my limited experience in working with ORMs (so far LLBL Gen Pro and Entity Framework 4), I've noticed that inherently, queries return data for all columns. I know NHibernate is another popular ...
5
votes
11answers
1k views
Which ORM tool should I use for .Net development [closed]
My company is looking to use an ORM for new development in .Net. We are currently looking at nHibernate, because of its popularity, however LLBLGen is another option that we may consider. Cost is not ...
4
votes
2answers
297 views
ASP.NET ORM for High Scalable Websites
Which is the best option for High Scalable Websites or Enterprise Applications:
LBLGen
.NetTiers
LinqToSQL
NHybernate
Repository Pattern (CodePlex)
If any other available let me know.
4
votes
2answers
692 views
How do predicate parameters work syntactically in C#?
Some Object Relational Mapping (ORM) frameworks (such as LLBLGen) allow you to specify "predicate" parameters to the query methods, such as (simplified a bit):
var entities = ...
4
votes
3answers
1k views
LLBLGen: How can I softdelete a entry
I have inherited a project that uses LLBLGen Pro for the DB layer. The DB model requires that when a entry is deleted a flag (DeletedDate is set to the current time). The last programmer ignored this ...
3
votes
2answers
100 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 ...
3
votes
1answer
79 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 ...
3
votes
1answer
399 views
Is it possible to serialize complex object with Protocol Buffers C# (ProtoBuf-net)
Is it possible to serialize complex object with Protocol Buffers C# (ProtoBuf-net) without using Protocontract and proto files ?
[ProtoBuf.ProtoContract(ImplicitFields = ...
3
votes
2answers
846 views
How does LLBLGen Pro Stack up Against Nhibernate Performance Wise
I have search the internet high and low looking for any performance information for LLBLGen Pro. None found. Just wanted to know how does LLBLGen Pro perform compared the Nhibernate. Thanks
3
votes
3answers
1k views
What is the difference between llblgen and nHibernate?
What are the key differences between llblgen and nHibernate?
3
votes
2answers
2k views
How do I join tables with a condition using LLBLGen?
I have the following Sql Query that returns the type of results that I want:
SELECT b.ID, a.Name, b.Col2, b.COl3
FROM Table1 a
LEFT OUTER JOIN Table2 b on b.Col4 = a.ID AND b.Col5 = 'test'
In ...
3
votes
1answer
260 views
Standard way to merge Entities in LlblGenPro
I start with an entity A with primary key A1, it has child collections B and C, but they are empty, because I haven't prefetched them. I now get a new occurrence of A (A prime) with primary key A1 ...
2
votes
0answers
53 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 ...
2
votes
2answers
407 views
LLBLGen and the repository pattern
I was wondering if building a repository on the top LLBLGen (adapter) is a good idea. I don't want to overengineer and reinvent the wheel again. The DataAccessAdapter class could be some kind of a ...
2
votes
1answer
380 views
Multiple Outer Join Condition LLBLGen
I have the following LLBLGen code that retrieves articles by Category. Essentially it is selecting from the article table where the articles are not marked for deletion and joining on the ...
2
votes
2answers
519 views
LLblgen: Select distinct?
I can't seem to figure out how I can select only distinct entries in Llblgen 2.6 self-service model
I essentially want this query.
select distinct City
from peopleTable
where *predicates*
I've got ...
2
votes
2answers
611 views
LLBLGen “Flattening” Table Relations
I currently have two entities in LLBLGen and would like to merge them together to output to a table to be used in a DevExpress GridControl in the same way that 2 tables joined together with an inner ...
2
votes
3answers
351 views
Should one extend or encapsulate ORM objects?
I'm having trouble understanding how to use ORM generated objects. We're using LLBLGen for mapping our database model to objects. These objects we encapsulate in another layer which represents our ...
2
votes
2answers
2k views
Create (LLBLGen) Linq query dynamicly with strings
We need to generate LINQ queries which are 100% unknown during coding (design time). This is because the logic is available in our framework which is 100% separated from any data projects. For data we ...
1
vote
0answers
62 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
83 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 ...
1
vote
1answer
131 views
sorting on related field in llblgen 2.6
I inherited an application that uses llblgen 2.6. I have a PersonAppointmentType entity that has a AppointmentType property (n:1 relation). Now I want to sort a collection of PersonAppointmentTypes on ...
1
vote
2answers
218 views
Using mvc-mini-profiler database profiling with Llblgen
I am trying to integrate mvc-mini-profiler to asp.net mvc application with Llblgen used for data access. I have tried to override llblgen's CommonDaoBase.CreateConnection:
public override ...
1
vote
2answers
80 views
When will llblgenpro 3 support NHibernate 3
Google-foo is difficult when you're trying to find the answer to version support questions like this. So when will LLBLGen Pro support NHibernate 3? LLBLGen Pro 3.0 supports NHibernate 2.1. If I just ...
1
vote
3answers
187 views
Create expression tree for “like” on a decimal field
I would like to create an expression tree for a query expression that looks something like this:
employee => employee.Salary.StartsWith("28")
So that the sql could appear as:
where ...
1
vote
1answer
332 views
LLBLGen Cascading Delete?
Is there any easy way to do what seems best described as a "Cascading Delete" in LLBLGen? An example of what I'm looking for:
You've got these tables:
Customer:
-Id
Order:
-Id
-CustomerId
...
1
vote
2answers
421 views
Inner joins using LLBLGen?
How could I do a simple join using LLBLGen?
table1 - clientTable (address, phone, etc)
table2 - employeeTable (name, etc)
table3 - clientEmployeeTable (clientid, employeeid)
I'm filling out a ...
1
vote
1answer
77 views
LLBLGen Pro v2.6 designer issue
How do you delete more than one entity at the same time in the designer Entities list. it seems that the designer interface only allows the selection of 1 entity at a time....
This is frustrating, is ...
1
vote
0answers
676 views
How to use a resolver for collections in AutoMapper?
I want to map some of my domain objects back to ORM (LLBLGen) entities, for this I'm using AutoMapper. The domain objects contain collections, and the AutoMapper documentation states that we don't ...
1
vote
1answer
526 views
Nested Select in LLBLGen
So, I have the following tables:
Using LLBLGen 2.6 (Adapter Version - No Linq), SQL Server, and .NET 3.5, how would I write the following query?
SELECT o.ObjectID
FROM Object o
INNER JOIN ...
1
vote
3answers
574 views
llblgen: How do i filter?
Im having some problems with filtering data with LLBLGen. I have an EmployeeEntity where i want to fetch the data filtering by string CustomerNumber. CustomerNumber is not Primary Key. I guess i have ...
1
vote
4answers
465 views
Using LLBL as Model in MVC
I have settled on trying to use ASP.NET MVC but the first part I want to replace is the Model. I am using LLBL Pro for the model.
I have a table called "Groups" that is a simple look up table. I ...
1
vote
5answers
1k views
can't pass default comparer as IComparer<object>
I'm trying to call a "Sort" method that expects a parameter of type IComparer<object>, using the code:
collection.Sort((IComparer<object>)Comparer<DateTime>.Default)
It builds but ...
1
vote
2answers
534 views
LLBLGen Pro: How to evaluate an EntityField for a given String
I have an LLBLGen Pro project which has generated VB.Net 2.0 Self Servicing code.
I have a function to return a list of custom structures based on a search using the generated code.
I would like to ...
1
vote
1answer
179 views
llblgen - Adding subtype record to existing hierarchical record
In llblgen's documentation the example used to describe a hierarchy is Employee - Manager - BoardMember.
Assuming you had an existing Manager entity and you wanted to "promote" them to a BoardMember. ...
1
vote
1answer
634 views
LLBLGen - TransactionScope or DataAccessAdapter.StartTransaction
I see there are two main options for managing transactions with llblgen.
Method 1:
using(DataAccessAdapter adapter = new DataAccessAdapter())
{
...
1
vote
3answers
532 views
Generating client-side validation from LLBLGen validation
I've been looking and it seems no-one has cracked this yet but I thought I'd ask the community here as well to see if anything came up.
Is there a way to get client-side validation (jQuery, Live ...
1
vote
1answer
664 views
Filtering FetchEntityCollection based on relationship collection count
I currently fetch a collection of jobs like this:
jobs = new EntityCollection<JobEntity>(new JobEntityFactory());
var bucket = GetJobsBucket(filter);
var tempContext = new Context();
...
0
votes
0answers
31 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,
...
0
votes
0answers
22 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
23 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 ...
0
votes
0answers
28 views
How to filter by TimeStamp value using LLBLGen
I have a AccessEvent table with the fields like DocumentId,EventDateTime,AccessType, etc. The AccessType can be Import,Export,Create,Delete,etc. I need to filter the AccessEvents by DocumentId and ...
0
votes
1answer
31 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
76 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 ...
0
votes
0answers
35 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)
0
votes
2answers
227 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 ...
0
votes
1answer
115 views
llblgen Pro SELECT TOP (n) equivalent query
Is it possible to perform a select top (n) query in llblgen pro?...not LINQ. If so, how can I achieve that using the SelfServicing?