0
votes
2answers
13 views

Can different RDBMS have impact on ORM performance test results?

I made some ORM framework performance tests on MSSQL (EF,NH in comparrison with pure ADO.NET approach). EF, NH and ADO.NET should use same ADO.NET provider for DB. My question is, if its possible that ...
0
votes
2answers
56 views

Advice on using the latest .Net technologies, for developing a new web based application [closed]

I am going to develop a new web based application using .Net framework. This application will be used by around 4000-5000 employees of the company, but not very frequently. I am bit confused about ...
0
votes
1answer
23 views

real time project with ORM

Often heard that the performance of any ORM can not achieve the performance of a direct connection via ADO.Net, is this true? I'm riding an application that is in real time and I am in dilemma to ...
0
votes
1answer
23 views

Simple.Data and unit testing the business layer

I'm thinking of using the Simple.Data package (https://github.com/markrendle/Simple.Data) and thought of an interesting issue in terms of implementation. Simple.Data appears to be designed abstract ...
1
vote
0answers
60 views

Create a database table from a Type. In code. Simply

I've been looking to replace SqlCommand's with Entity framework or Linq-To-SQL. However, they seem to rely heavily on using the designer (which I rather minimize), and in the case of Linq-To-SQL it ...
0
votes
1answer
45 views

Cascade Update one-to-many with NHibernate

I'm struggling with a NHibernate mapping problem. I'm using Repository/UnitOfWork pattern, and I'm trying to cascade-persist my objects through update method. For an example: I can alter Foo, ...
12
votes
3answers
294 views

Entity Framework 5 wrong data type in query

We are using EF 5.0 as our ORM of choice in our business solution, structured in a n-layer fashion with everything decoupled and a nice composition root with ninject. Lately, we've been building a ...
0
votes
0answers
17 views

.net use Telerik ORM / extending MembershipProvider

I need point of views regarding an extranet project that i have planned to do. Each user of the extranet would have different user right. I know that the decorator pattern is a good way to accomplish ...
0
votes
0answers
14 views

Extending an Entity Framework model via inheritance

I have an EF model that supports some basic functions that I'd like to reuse in several different applications: [Core.dll] CoreModel - Users - Clients I'd like to take this model, and extend it ...
1
vote
2answers
58 views

PetaPoco map comma separated string to a List of string

In the database, I've got a column that contains comma seperated values, like so: Foo.Bars varchar(100): @;1,5 In the code, the DTO contains a List<string>, like so: public class Foo { ...
0
votes
1answer
21 views

LINQ to SQL Inheritance InvalidOperationException

Trying to get my head around LINQ and inheritance mapping I get the exception in DBContext.cs when the connectionstring line is executed: Could not retrieve Table for inheritance subtype 'Movie, try ...
1
vote
1answer
58 views

Merge 2 POCO into 1 Class and execute CRUD

I am using PetaPoco as an ORM and want to combine 2 POCO into 1 class and then execute CRUD operations with this class. Right now I got something like this: *Table Person has an fk address_id.* ...
0
votes
1answer
60 views

Using Telerik ORM it is throwing error when joining 2 tables from different contexts

I am very new to Telerik ORM, so please bare with me. I am also semi new to LINQ , although I just read the "Wrox Professional LINQ" book, so I feel comfortable with it. I am trying to use a join in ...
0
votes
0answers
106 views

Using Dapper with Oracle User-Defined Types

Is there a way to use Dapper with Oracle User-Defined Types returned by stored procedures? Dapper seems to work with stored procedures (see Using Dapper with Oracle stored procedures which return ...
1
vote
3answers
122 views

Entity Framework turns Pure Junction Look Up Tables into Many to Many relationship

I have just recently started working with Entity Framework within an ASP.NET project (which I have also just recently started working with so I'm a little overwhelmed lately) I have a database that ...
1
vote
1answer
63 views

Map some of table fields into a dictionary

We have a legacy system which has the ability to add custom fields to its entites. This feature is implemented badly, to be exact: each entity table is extended with fields Custom1, ... Custom 10, and ...
0
votes
1answer
97 views

Make Entity Framework ignore Discriminator column

I have a simple app with zero inheritance (at least as far as the database is concerned). How can I "tell" this to Entity Framework so that it would stop looking for the Discriminator column? I don't ...
-1
votes
1answer
109 views

ORM Comparison Bulk and Batch operation overview

There are many articles about the pro's and con's of ORMs and comparison matrices And it looks like DataObjects.Net is wining the competition(for now) Test categories are usually performance, LINQ ...
0
votes
0answers
123 views

Compile-time SQL statement syntax checking?

Question: What's currently the best leightweight option for compile-time SQL statement syntax checking in C#/VB.NET ? Basically, what I want is to create a select/update/insert/delete statement in ...
0
votes
2answers
57 views

At what point does an IList cause a query to execute in an ORM?

I am using telerik's OpenAccess ORM and I am making some changes to the generated code. For an entity that has a navigation property (a key to another table), these are generated as ILists like the ...
3
votes
2answers
135 views

ModelValidationException: Name 'AnonymousUID' cannot be used in type 'CodeFirstDatabaseSchema.AnonymousUID'

I am using Entity Framework to model an existing database. One of the database tables contains a column with the same name as the table, AnonymousUID. I use the Entity Framework Power Tools function ...
-3
votes
1answer
70 views

Why does NHibernate overwrite the last record on session.Save?

The NHibernate session.Save overwrites last record. This occurs starting on the second session.Save operation and then on it does not add new records any more but overrides the last record. Code below ...
1
vote
3answers
282 views

Entity relationship validation in 3-tier architecture

I'm developing an ASP.NET MVC C# application with the MVC application as the UI layer in a 3-tire application and EF CodeFirst 5 as DAL. DAL -> DTL DTL <- BLL -> DAL DTL <- UI -> BLL ...
2
votes
1answer
161 views

Custom Linq-to-SQL MappingSource

I have a project which mixes compiled entity framework domain with dynamicly defined external databases. Users can supply the connection string, table name, and column names at run time to access an ...
1
vote
1answer
169 views

Get table name of class at runtime in ServiceStack.OrmLite / avoid hardcoding table names

I use ServiceStack.OrmLite and want to get the total count of rows from a table. I currently do as pointed out in the ServiceStack.OrmLite documentation via db.Scalar<int>("SELECT COUNT(*) FROM ...
0
votes
1answer
27 views

SQL ORM's for .NET with respect to entity model upgrade support

When I modify an entity in my model, for instance changing property names and types, moving properties around etc, I then have to manually upgrade the database so it matches the new entity model. ...
0
votes
1answer
218 views

what is the reason for Multiplicity constraint violated.

I am having a class A which is having list of another class b Class A { public List<B> PointCollection { get; set; } } Although all other articles tell that Class B might also ...
6
votes
2answers
148 views

“A commit is already in progress” attempting to save changes in Telerik OpenAccess ORM

I have been trying to figure out how an error is occurring in my code. The exception tells me a commit is already in progress, but unless a call to SaveChanges is asynchronous, I don't see how that is ...
0
votes
1answer
29 views

.NET and/or Web Service-accessible Object Manager with Security

I currently use Microsoft CRM for a lot of development but am questioning if there is a better toolset for certain applications. One of the strengths with MS CRM is being able to create objects, ...
0
votes
4answers
114 views

ORM for Stored procedure only: preferred tool

Usually I use Entity Framowrk as my ORM tool. And I really like 'Function Import' feature and code generators. But once I read in on very thick and very serious book that its not good idea to use EF ...
1
vote
1answer
140 views

Entity Framework - Challenging setup includes multiple primary keys, and multiple associations to foreign table

I'm trying to map a couple of legacy tables using Entity Framework. The classes look like this... public class Customer { [Key, Required] public string Code { get; set; } public string ...
1
vote
1answer
162 views

mysql with nhibernate too many connections

i'm runnning nhibernate on .net framework, during testing I receive this error ERROR 91 0 0 0 An exception occurred: cannot open connection NHibernate.ADOException: cannot open connection ---> ...
0
votes
1answer
81 views

Which ORM should be suitable for WPF 4.0 and SQLite [closed]

Which ORM should be suitable for WPF 4.0 and SQLite (read only database) application? team prefers Ado.net entity framework, I prefer ADO.Net than using any ORM since there is no db update only data ...
0
votes
0answers
72 views

How to handle DTO that inherits entities with (N)Hibernate?

What I want Hi, I need to extend my domain entities with additional computed properties. I chose to make a DTO inherits the entity. Like this, the code "above" the DTO doesn't care about the origin ...
1
vote
0answers
53 views

Coolstorage query error

I have been looking for an open-source alternative to Linq-To-SQL and came across Vici CoolStorage which is a perfect fit for my needs (light-weight, open source, supports Access and SQL Server). ...
0
votes
1answer
195 views

Specifying the Primary Key when using Fluent NHibernate and AsList()

I have a scenario in which a User entity has a list of country ids, held as IList. public virtual IList<int> TradeCountries { get; protected set; } Currently this is mapped as HasMany(x ...
0
votes
0answers
124 views

Good examples of a .Net 3.5 Data Access Layer (single tier) [closed]

I've been reading, posting and sgoogling for a good example of a DAL for .NET 3.5. I can't use EF 4 since I can't use .NET 4 and I think LinqToSQL is slowly dying. I am leaning towards either ...
0
votes
1answer
107 views

Definition of a Data Access Layer in .NET 3.5

I have the following code that was written by someone else in my web project: StringBuilder sql = new StringBuilder(""); // Define sql sql.Append("SELECT title "); sql.Append("FROM ...
3
votes
2answers
496 views

Dapper and SQL Injections

How does Dapper help protect against SQL injections? I am testing out different DAL technologies and have to choose one to be secure our site. I'm leaning towards Dapper ...
2
votes
2answers
60 views

.Net 3.5 and SQL Server 2005 choosing a DAL technology

I have a .Net 3.5 web application and need to change old code to use a DAL technology. I need some help on the pros and cons of choosing a DAL. I know of Linq to SQL but heard that it is an old and ...
0
votes
2answers
170 views

nHibernate Log4Net logging exception

I have a project, fully setup and tested successfully with nHibernate that I am trying to run in debug mode with Visual Studio 2010. Running the project prior to setting up log4net obviously runs ...
0
votes
0answers
59 views

How to clone EF entity

I have flowing scenario: 1) entity in loaded from EF with graph of entities. (STE, 4.3.1) 2) this entity may(or may not) be modified. 3) this entity is send by WCF to server. 4) I would like to ...
1
vote
3answers
141 views

DAL to generate SQL in .NET (constructing queries for user defined models)

In most cases, classes are known beforehand (e.g. Customer, Order); they're described for ORMs (e.g. Entity Framework, LINQ to SQL, NHibernate, BLToolkit) using visual designers, attributes in code or ...
0
votes
0answers
87 views

SQL Relationships for a somewhat unique requirement

I've been stuck on a solution for the problem I am about to describe below. If there is something that needs clarification please let me know so that I can update my post. First of all, let me explain ...
0
votes
1answer
73 views

SubSonic Generating Compiler Warnings in Generated Classes

Several of my ASP.NET MVC 2 (.NET 3.5) projects uses SubSonic 2 as it's primary database accessor in the data layer of the project. This works just fine and everything within the database is ...
2
votes
1answer
164 views

Dapper Deserializing XML

If I have XML stored in an nvarchar, does Dapper (or Dapper extensions) have a means to deserialize the XML into a DataContract type or a type with XmlRoot / XmlElement annotations? If it does not ...
1
vote
2answers
76 views

Db field types and C# field types?

lets say I have a SP in SQL : CREATE PROCEDURE mySP @LastName nvarchar(10), @FirstName nvarchar(20) AS ... GO In c# there isn't string type with specified length. its max length is ...
1
vote
1answer
68 views

Mapping a collection of localization entities used by many entities with Fluent NHibernate

I am working with a legacy database and I am trying to map some kind of localization table with Fluent NHibernate. The table looks like this: DataName [PK] TableName [PK] FieldName [PK] Id [PK] ...
1
vote
1answer
183 views

Petapoco - Can't auto join

I have an object call Country and another call CounytryRegions as express below [TableName("Countries"), PrimaryKey("Code", autoIncrement = false)] public class Country { public Country() { ...
1
vote
1answer
56 views

Mixing persistent with volatile data

I have a .Net server application backed by a SQL server DB. I'm using nHibernate (fluent) to handle all the DB operations. I'm facing serious performance and concurrency issues, obviously deriving ...

1 2 3 4 5 11