Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
149 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 ...
2
votes
1answer
197 views

.NET ORM Adapters: LLBLGEN vs nHydrate

We are about to start development of a web application in MVC3 Razor. We are looking for an ORM that has following aspects: If you baffled or puzzled in a scenario you can easy to find a solution or ...
2
votes
1answer
401 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
3answers
1k views

ASP.NET MVC and LLBLGEN

Anybody aware of a best practices or example project out there that uses ASP.NET MVC and LLBLGEN (selfservicing or adaptor)? Possibly something similar to S#arp Architecture. I'm new to MVC and I'm ...
1
vote
1answer
182 views

Connecting to wrong database

Environment .NET 3.5 Self Servicing LLBL Pro 2.6 I know I might be doing something stupid here. I have following code string connectionString = ...
1
vote
1answer
51 views

How can I convert typedview to array

I am trying to convert TypedView class from LLBlGen to array.I am trying to bind this array to RadComboBox from Telerik. I am using WCF service to bind an array to list. Please let me know if you have ...
1
vote
3answers
413 views

LLBLGEN Pro and EF4 ORMs comparison

New year - new startup :) We are chosing ORM. I personally worked with LLBLGEN last years. I've looked through EF4 today and have found that its functionality is close to llblgen. (filtering, sorting, ...
1
vote
2answers
81 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
189 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
356 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
1answer
339 views

LLBLGen: Copy table from one database to another

I have two databases (SQL Server 2005) with the same table schemes. I need to copy data from source table to destination with some modification of data along the way. And if destination table already ...
0
votes
1answer
17 views

Entity Framework and LLBLGen

I have a database, which has two tables. The Order table, and the Item table. The relationship is m:1. I am using LLBLGen as the mapping tool to generate the source file. I can see that the ItemID ...
0
votes
0answers
37 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
0answers
28 views

LLBLGEN, how to update an existing entity

I have entity Customer under group name Customers I moved the Customer entity to a new group TestCustomers The Customer db table changes in the meantime renaming a field from LastName to Surname ...
0
votes
0answers
40 views

LLBLGen Automatically Include Related Entities in GetMulti?

Say I have an LLBLGen GetMulti expression using Related entities: Dim customers as New CustomerCollection dim ordersRel as New RelationCollection ...
0
votes
0answers
40 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
1answer
79 views

How to do a Full-Text search within a Linq query when using LLBLGen

[Using LLBLGen Pro 3.1 with Entity Framework 4, .NET 4 and SQLServer 2005] I've got a linq query that includes .Contain(keyword); IEnumerable<Product> products = null; using (var ...
0
votes
0answers
47 views

Auto implemented properties with LLBLGen

How do I set up LLBLGen to use auto implemented properties instead of using backing fields? I am trying to reverse engineer an entity + mapping for NHibernate.
0
votes
1answer
171 views

fluent validation validator ignoring custom rules created in domain layer

i have a generated domain model using LLBLGEN, and im validating those validation rules which are created at domain layer using the fluentvalidation.TestHelper features. an example of my validation ...
0
votes
1answer
349 views

LLBLGEN: Load a EntityCollection or List from a datatable

How do I load an EntityCollection or List(Of Entity) from a DataTable using LLBLGen?
0
votes
1answer
101 views

LLBLGEN: How can I get only necessary list of columns with FetchPolymorphic method?

I have a list of tables and I'd like to select only necessary columns. How can I set filter witn FetchPolymorphic method?
0
votes
1answer
126 views

group by in linq to llblgen

This is my statment private IEnumerable<IGrouping<AccountEntity,AxsEntity>> GetAxsEntitiesForInvoicing(IDataAccessAdapter adapter) { var metaData = new LinqMetaData(adapter); var ...
0
votes
1answer
89 views

LLBLGen nested select

How can I make a nested select statment with LLBLGen? I have the following sql statement. Select * from Users where User.UserId in (select ManagerId from LnkUserManagers) Thanks in advance.
0
votes
1answer
238 views

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?
0
votes
1answer
391 views

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). ...
0
votes
1answer
383 views

Which ORM has better performance !! OpenAccess or LLBLGen Pro?

I'm working on a new project right now and thinking of using an ORM beyond that of OpenAccess or LLBLGen Pro or Subsonic.This project may have great quantities and hits concurrent,So our performance ...
0
votes
1answer
266 views

How do I filter out entities that are NOT in a many-to-many relationship using LLBLGen Pro?

I have some code that is able to retrieve all entities that contain a particular relationship, like so: var bucket = new RelationPredicateBucket(); ...
0
votes
1answer
171 views

Can I configure LLBLGen to include generated SQL in exceptions?

I'm using LLBLGen and I have some code like so: if (onlyRecentMessages) { messageBucket.PredicateExpression.Add(MessageFields.DateEffective >= DateTime.Today.AddDays(-30)); } ...
0
votes
2answers
133 views

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 ...
0
votes
1answer
93 views

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 ...
0
votes
2answers
135 views

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 ...
0
votes
1answer
408 views

Join multiple times to the same table using LLBLGen

I have a table, let call it Widget, with (among others) person1id and person2id. (Yes, I suppose I should have setup a N-N relation table, but so far we never have more than 2 persons on a single ...
0
votes
1answer
302 views

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 ...
0
votes
2answers
140 views

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 ...
0
votes
2answers
495 views

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 ...
0
votes
1answer
362 views

LLBLGEN: Linq to LLBGEN don't work

I want to make custom select from the database table using Linq. We use LLBGEN as ORM solution. I can't do LINQ query to Entities Collection Class unless I call GetMulti(null) method of it. Is it ...