53
votes
27answers
7k views

Which ORM for .NET would you recommend?

I haven't worked on a .NET project for a while (more than a year). Before I've never used an ORM for a .NET application. What are some of your takes on this? Does using one make sense? Which ones ...
50
votes
18answers
6k views

Are there good reasons not to use an ORM?

During my apprenticeship, I have used NHibernate for some smaller projects which I mostly coded and designed on my own. Now, before starting some bigger project, the discussion arose how to design ...
23
votes
11answers
2k views

ORM/Persistence layer Advice

Hi all I'm starting a new project and I'm looking around for either a very good ORM or for a non-SQL-based persistence layer. For this project, I really don't care on how the data is persisted, as ...
19
votes
7answers
7k views

Problem using SQLite :memory: with NHibernate

I use NHibernate for my dataacess, and for awhile not I've been using SQLite for local integration tests. I've been using a file, but I thought I would out the :memory: option. When I fire up any of ...
16
votes
2answers
2k views

Entity Framework Code First - two Foreign Keys from same table

I've just started using EF code first, so I'm total beginner in this topic. I wanted to create relations between Teams and Matches: 1 match = 2 teams (home, guest) and result. I thought It's easy to ...
14
votes
9answers
6k views

Any thoughts on DevExpress XPO ORM Package? [closed]

XPO is the object relational mapper of choice at my company. Any thoughts on the pros and cons? I was just looking for general feeling and anecdotes about the product. We are not switching to XPO. ...
13
votes
3answers
2k views

Performing Inserts and Updates with Dapper

I am interested in using Dapper - but from what I can tell it only supports Query and Execute. I do not see that Dapper includes a way of Inserting and Updating objects. Given that our project (most ...
13
votes
3answers
514 views

Which ORM to use?

I'm developing an application which will have these classes: class Shortcut { public string Name { get; } public IList<Trigger> Triggers { get; } public IList<Action> Actions ...
13
votes
4answers
12k views

C# Database Access: DBNull vs null

We have our own ORM we use here, and provide strongly typed wrappers for all of our db tables. We also allow weakly typed ad-hoc SQL to be executed, but these queries still go through the same class ...
12
votes
19answers
2k views

Is everyone here jumping on the ORM band wagon?

Microsoft Linq to SQL, Entity Framework (EF), and nHibernate, etc are all proposing ORMS as the next generation of Data Mapping technologies, and are claiming to be lightweight, fast and easy. Like ...
11
votes
5answers
2k views

Suggestions on how to map from Domain (ORM) objects to Data Transfer Objects (DTO)

The current system that I am working on makes use of Castle Activerecord to provide ORM (Object Relational Mapping) between the Domain objects and the database. This is all well and good and at most ...
10
votes
6answers
156 views

How to design Date-of-Birth in DB and ORM for mix of known and unkown dates

Note up front, my question turns out to be similar to SO question 1668172. This is a design question that surely must have popped up for others before, yet I couldn't find an answer that fits my ...
10
votes
8answers
1k views

What ORM for .net should I use?

I'm relatively new to .NET and have being using Linq2Sql for a almost a year, but it lacks some of the features I'm looking for now. I'm going to start a new project in which I want to use an ORM ...
9
votes
6answers
813 views

Please recommend .NET ORM for N-tier development

I need to choose carefully .NET ORM for N-tier application. That means, the I will have the server (WCF service), which exposes the data, and client, which displays it. The ORM should support all the ...
9
votes
4answers
2k views

Is an ORM redundant with a NoSQL API?

with MongoDB (and I assume other NoSQL database APIs worth their salt) the ways of querying the database are much more simplistic than SQL. There is no tedious SQL queries to generate and such. For ...
9
votes
2answers
499 views

Looking for a .Net ORM

I'm looking for a .Net 3.5 ORM framework with a rather unusual set of requirements: I need to create and alter tables at runtime with schemas defined by my end-users. (Obviously, that wouldn't be ...
9
votes
6answers
937 views

Do Large High-Traffic Websites use ORMs?

I have finally decided to go with the Entity Framework since it has the best performance out of all the ORMs. But before I start reading and writing code I just want to know if there are any high ...
9
votes
4answers
5k views

Is Telerik openaccess ORM worth learning?

I have just won 1 Telerik Premium Collection for .NET Developer with subscription (lucky me!) and was wondering whether the OpenAccess ORM is worth learning? Has anyone thrown away their open source ...
9
votes
3answers
6k views

ADO EF - Errors Mapping Associations between Derived Types in TPH

Background I am writing a data access library using the ADO Entity Framework in Visual Studio 2008 SP1 using the .NET Framework 3.5 SP1. I am trying to create associations between two entities that ...
9
votes
12answers
691 views

Best .NET Solution for Frequently Changed Database

I am currently architecting a small CRUD applicaton. Their database is a huge mess and will be changing frequently over the course of the next 6 months to a year. What would you recommend for my data ...
8
votes
3answers
83 views

Using DI with a shared library across applications

I'm facing a design challenge that I just can't seem to solve in a satisfactory way. I've got a class library assembly that contains all of my shared ORM objects (using EntitySpaces framework). ...
8
votes
3answers
835 views

ORM that supports Mono?

I'm starting up a rather large-scale open source server project written in C# which targets both the MS.NET and Mono platforms. However, I realized that Mono only has limited support for LINQ to SQL, ...
8
votes
3answers
2k views

What are the 'big' advantages to have Poco with ORM?

One advantage that comes to my mind is, if you use Poco classes for Orm mapping, you can easily switch from one ORM to another, if both support Poco. Having an ORM with no Poco support, e.g. mappings ...
8
votes
3answers
208 views

ORM - Does the Database Schema Drive the Entity Composition or Vice-Versa?

We've had quite a bit of discussion among our development group concerning whether the composition of entities should drive the database design, or should the database design drive the composition of ...
8
votes
3answers
2k views

NHibernate DuplicateMappingException when two classes have the same name but different namespaces

I have a class in my domain model root that looks like this: namespace Domain { public class Foo { ... } } I also have another class with the same name in a different namespace: namespace ...
8
votes
6answers
3k views

What ORM to Run: telerik Open Access VS Subsonic VS linq to sql VS Active Record

We are looking into using an ORM and I wanted some opinions/comparisons The basic criteria we have for an ORM is: Easy to use/configure(short learning curve), flexible, the ability to abstract it ...
8
votes
5answers
743 views

What is the correct implementation for GetHashCode() for entity classes?

Below is a sample implementation of overriding Object.Equals() for an entity base class from which all other entities in an application derive. All entity classes have the property Id, which is a ...
7
votes
2answers
185 views

How do transactions work in nhibernate?

I just started learning nHibernate and I'm confused by transactions. I know that nhibernate tracks all changes to persistent objects in a session and those changes get sent to database on commit, but ...
7
votes
3answers
3k views

Which Micro ORM to use? [closed]

Trying to decide between Dapper, Massive and PetaPoco. I do like simplicity of Dapper, fexibility of Massive and POCO support in PetaPoco but am currently procrastinating about which one to choose for ...
7
votes
2answers
1k views

NHibernate3 Query vs QueryOver

I noticed there are two ways to create nice generic friendly access to nhibernate. IQueryOver<T, T> query= session.QueryOver<T>().Where(criteria); and IQueryable<T> query= ...
7
votes
5answers
770 views

NHibernate - returning complex object from sql function

I've got an application witch uses NHibernate as an ORM. I have one persistent class: public class Match : IEntity { public virtual int ID { get; set; } public virtual string Word { get; set; ...
7
votes
3answers
244 views

Do I want an ORM?

We have an object model being used across three applications. Two programs collect data, another reads it and generates reports. The system is very disconnected, so we cannot have a single database ...
7
votes
3answers
404 views

Linq queries in Entity Framework 4. Horrible perfomance

In my project I'm using EntityFramework 4 for working with data. I found horrible performance problems with a simple query. When I looked at the profiler on a sql query, generated by EF4, I was ...
7
votes
5answers
3k views

Any recommendations for Sqlite C# ORM code generation

Can anyone recommend an Sqlite C# ORM code generation tool. I have found the Habanero framework, any comments on that? Thanks UPDATE I have gone with Subsonic in this instance. To help anyone else ...
7
votes
1answer
3k views

Fluent NHibernate FluentMappings.AddFromAssemblyOf<> Issue

A coworker and I were recently doing the backend for a small application using Fluent NHibernate. We wrote our entities, mapping files, persistence manager, but for some reason we couldn't export the ...
7
votes
7answers
2k views

Where do you put SQL Statements in your c# projects?

I will likely be responsible for porting a vb6 application to c#. This application is a windows app that interacts with an access db. The data access is encapsulated in basic business objects. One ...
7
votes
4answers
3k views

Compare and Contrast NHibernate and OpenAccess from Telerik

Have you used the OpenAccess ORM from Telerik? How does it compare to NHibernate? When should I consider using it over NHibernate?
6
votes
2answers
453 views

Dapper enum questions

I am experimenting with dapper. I have a class which has an enum and the values are stored as strings in the database This works with FluentNHibernate using GenericEnumMapper Is it possible to do ...
6
votes
5answers
336 views

nHibernate, an n-Tier solution + request for advice

I'm getting the chance to develop a mildly complex project and have been investigating the various approaches that I can use to tackle this project. Typically I would have ran with the traditional ...
6
votes
5answers
469 views

.Net ORM with the fastest learning curve?

A little briefing first; I've been a Delphi person for years, and been away from C# for two years. The last thing I've done in C# was a mid scale DB app with my own custom DAL. Ie, I had coded my own ...
6
votes
3answers
230 views

When is it NOT advisible to use an ORM like Linq-to-SQL / Entity Framework for a program? [closed]

Possible Duplicate: Are there good reasons not to use an ORM? I've just started learning what an ORM is and how it can help me save time and make applications more secure. Since this is new ...
6
votes
4answers
171 views

Would an ORM have any way of determining that a SQLite column contains date-times or booleans?

I've been thinking about using SQLite for my next project, but I'm concerned that it seems to lack proper datetime and bit data types. If I use DbLinq (or some other ORM) to generate C# classes, will ...
6
votes
2answers
328 views

ORM market analysis

I would like to see your experience with popular ORM tools outhere, like NHibernate, LLBLGen, EF, S2Q, Genom-e, LightSpeed, DataObjects.NET, OpenAccess, ... From my exp: - Genom-e is quiet capable ...
6
votes
7answers
826 views

SQLite on C# Cross-Platform Applications

Can someone help/guide me with using SQLite lib on Linux (MONO) and Windows (.NET) On linux i use native mono sqlite client, and on windows i use http://sqlite.phxsoftware.com/ is there a way to ...
6
votes
1answer
141 views

ORM supporting mapping of generic types

Are there ORM tools for .NET supporting mapping of generic types? I imagine at least two possible mapping scenarios: Mapping of particular generic type instances Mapping of all possible generic ...
6
votes
11answers
2k views

What are some good Entity Framework Alternatives

I am using the Entity Framework now and constantly having to write inline sql because Entity framework does not support full text search and other features. Is there a ORM out there that has many ...
6
votes
8answers
931 views

Which ORM is the best when using Stored Procedures

I have Business objects (DEVELOPERS WRITE) and some SPROCS (DBA WRITE) Can anyone recommend a good object mapper to deal with this kind of setup. I tried codesmith and nhibernate and had trouble. I ...
6
votes
5answers
1k views

How to get into SubSonic?

a month ago i searched for some tools that will generate c# classes out for my sql database/tables. so i don't have to write DAL classes manually and to save a lot of time. i came across "ORM" and ...
6
votes
11answers
948 views

Good Features for an ORM

I'm currently working on putting together a fairly simple ORM tool to serve as a framework for various web projects for a client. Most of the projects are internal and will not require massive ...
5
votes
1answer
308 views

LINQ To Entities does not recognize the method Last. Really?

In this query: public static IEnumerable<IServerOnlineCharacter> GetUpdated() { var context = DataContext.GetDataContext(); return ...

1 2 3 4 5 9