Search found 2919 matches

by AndreyR
Thu 07 Jul 2011 16:00
Forum: Entity Developer
Topic: How to use Entity Developer output in your own Project?
Replies: 3
Views: 1822

Entity Developer generates a model, code file and metadata information.
I recommend you to add the model (with .edps and .Diagram1.View files) into your project as an existing file or to add a new Devart Entity Model or Devart LinqConnect model to your project.
You will be able to use the model just as if you were using the Microsoft ADO.NET Entity Data Model or LINQ to SQL Classes (depending on the technology you are using).
Take a look at the Product Tour, it gives some tips about working with models.
by AndreyR
Thu 07 Jul 2011 14:17
Forum: Entity Framework support
Topic: Guid in Storage, but String in Conceptual
Replies: 3
Views: 1703

We are investigating the possibility to add the requested functionality.
I will let you know as soon as any new information is available.
by AndreyR
Thu 07 Jul 2011 09:45
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18517

Alladin, could you please send us the model file and the query you are using to get this SQL?
by AndreyR
Thu 07 Jul 2011 09:37
Forum: LinqConnect (LINQ to SQL support)
Topic: SQL script for created VIEW in database wrong?
Replies: 1
Views: 1192

Unfortunately, the model does not contain the information that is necessary for the view script generation (namely, we don't have any information about the table(s) the SELECT statement is applied to).
by AndreyR
Wed 06 Jul 2011 14:46
Forum: dotConnect for PostgreSQL
Topic: dotConnect 4.9.152 does not support CITEXT field
Replies: 8
Views: 1882

We are working on CIText support. It will be available in one of the nearest builds.
by AndreyR
Wed 06 Jul 2011 14:00
Forum: dotConnect for PostgreSQL
Topic: Error in PostgreSQL Entity Developer
Replies: 1
Views: 943

What is your .NET Framework version?
Please check the versions of all the assemblies used in the project.
If the versions appear to be correct, use the Modules VS Debug window to ensure that the declared version matches the version of the loaded assembly.
by AndreyR
Wed 06 Jul 2011 13:12
Forum: Entity Framework support
Topic: Silverlight application ado.net data model
Replies: 9
Views: 7235

I recommend you to add a Devart Entity model to your project. It has the same functionality that the Microsoft models, but we have better control over metadata and more convenient designer - Entity Developer (with Visual Studio Integration).
by AndreyR
Wed 06 Jul 2011 10:58
Forum: Entity Developer
Topic: How to specify 1 to 0...1 mapping in abstract classes?
Replies: 4
Views: 1696

You should have specified the Referential Constraint Properties for the Message_Attachment association.
I have sent the modified model to the e-mail address you provided in your forum profile.
by AndreyR
Wed 06 Jul 2011 08:49
Forum: dotConnect for PostgreSQL
Topic: Problem on creating 2 many-to-many relations on a diagram
Replies: 3
Views: 1188

We have fixed the problem. The fixed build will be available in a week or so.
by AndreyR
Tue 05 Jul 2011 12:54
Forum: dotConnect for Oracle
Topic: Insert sequence.NEXT_VAL in Entity Framework.
Replies: 10
Views: 42408

This situation is described in this Entity Framework Tips and Tricks article.
In Entity Developer you have an opportunity to edit the Store part of the model in Model Explorer in design time.
by AndreyR
Tue 05 Jul 2011 12:52
Forum: Entity Developer
Topic: Cannot access the .edps file as it is used by another proces
Replies: 24
Views: 8552

This problem is fixed in the upcoming build of dotConnect for Oracle.
It will be available in a week or so.
by AndreyR
Tue 05 Jul 2011 12:47
Forum: dotConnect for Oracle
Topic: Verifying if an entity object is modified
Replies: 1
Views: 934

First, sorry for the delay.
You can try to find out which properties were modified:

Code: Select all

var changed = context.ObjectStateManager.GetObjectStateEntries(EntityState.Modified);
foreach(var entry in changed) {
  var properties = entry.GetModifiedProperties();
However, an entity should not be marked as Modified if it wasn't modified explicitly.
Please check that your code does not modify the entities.
by AndreyR
Tue 05 Jul 2011 09:35
Forum: Entity Framework support
Topic: Convert EDMX file from MySQL to dotConnect?
Replies: 10
Views: 2074

We plan to release this build in a week.
I will let you know as soon as it is available.
by AndreyR
Tue 05 Jul 2011 08:27
Forum: Entity Framework support
Topic: POCO Entity Template Problem with Generated ObjectContext
Replies: 3
Views: 1548

I have sent the project to the new e-mail address.
by AndreyR
Mon 04 Jul 2011 15:33
Forum: Entity Framework support
Topic: 'ORA-00928: missing SELECT keyword' saving identity-only tbl
Replies: 2
Views: 2578

Thank you for the report, I have reproduced the issue.
I will let you know as soon as it is fixed.