Skip to content

Entity Developer

Entity Developer is a powerful ORM modeling and code generation tool for NHibernate, ADO.NET Entity Framework, and LINQ to SQL. It introduces new approaches for designing ORM models, boosts productivity, and facilitates the development of database applications.

http://www.devart.com/entitydeveloper/

Entity Developer

Categories

JUMP TO ANOTHER FORUM

95 results found

  1. This project for CSV manage is very popular :
    https://joshclose.github.io/CsvHelper/

    but this is not working directly with DevArt code generation because of decorations during class generation.

    BUT the author as already think about it and here’s the solution to import a simple country class:

    public sealed class MyClassMap : ClassMap<Country>
    {
    public MyClassMap()
    {
    Map(m => m.Id);
    Map(m => m.Name);
    }
    }

    Since this code is database dependent, it should be updatable at the same time as the classes generated by EntityDeveloper

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. Implement as it is done in ToDtoWithRelated(...)

    6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. Sometimes we just want to add/update some tables;
    Currently process for finding them is quite tedious as there is no shortcut for findeing them...
    Having a searchbox to define a filter criteria would help a lot (aslo being able to filter by status - add, update, remove)

    6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. Length returns degrees not meters , from a wgs84 (srid=4326) DbGeography column (MS returns meters...)

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. MySQL and Postgres standard naming convention uses snake casing, it would be essential to add a translator to translate to snake casing (database table name, database column name). Refer to forum post http://forums.devart.com/viewtopic.php?f=32&t=35171

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. As the entity model grows, it makes it more difficult to see the namespace organization of the classes in both Entity Developer and Visual Studio. Add support for:
    a) a namespace visual hierachy in Entity Developer. This can be either in the existing Class tree view or another tree view called Namespaces.
    b) Generating and presenting CSharp code in visual studio based on the namespace hierarchy. This includes both the files on disk and the visual presentation under the hbml (or other) file in Visual Studio.
    c) Knowing the root namespace defined in the model properties and organizing classes relative…

    2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. As a starting point in my software development projects, I use Entity Developer to create conceptual models of the associated business entities. Next, I generate a database based on the conceptual model. I then use DevExpress ExpressApp Framework (XAF) to create an initial user interface for populating the database with the content which describes the business entities. I would like a code generation template to generate the XAF C# code for the business objects in the Entity Developer conceptual model.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. It would really help if you implement few new properties in DbContext template (and maybe other but I work with that).

    1.Output directory for generated partial classes (if we want to create them)
    2. Set the filename of Context file (now model name and file name are same)
    3. Take into consideration "Model name as file prefix" also for context class as it is for entities

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. When developing with several people on the same Windows machine, DbMonitor always shows all processes of all users.

    As it's impossible to identify the right one (when more than one starts the same application) it would be great to be able to see the "owner" (user account name) and to filter the processes by it. Special case here: show only my own ones.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. Debugging a multithreaded Ado.NET/EntityFramework application with DbMonitor is easier than without, but threads get mixed in the log and it's not possible to filter for a given thread (or I don't know how).

    One of the (or probably both) following features would help to make this much easier:

    1) Allow to Filter by StackTrace content: If I know which thread I am interested in I usually know the entrypoint method, which is a line in the stacktrace. As DbMonitor knows the stacktrace of any line t logs, filtering by stacktrace content would help to support this and probably additional usecases…

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. When a process terminates in a dirty way (e.g. a visual studio software killed by "stop debugging", dbMonitor keeps the process in the process list. It's possible to clear the log, but the process remains and cannot be removed.
    This sounds useful as a default for "remove process", as usually a process that is still running may still be or become of interest again, but for processes that doesnt' exist any more it would reduce the necessity to restart dbMonitor every few hours.

    Maybe (although clearing the log should help even more), this would even support https://devart.uservoice.com/forums/38671-entity-developer/suggestions/12519276-fix-out-of-memory-exception-in-long-running-dbmoni and it may…

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. DbMonitor is a highly valuable tool for us to support Sql debugging between .NET and an oracle database server.
    I would like to just keep it running in background to be able to see what happened in case of an error, without having to restart it again and again.

    Unfortunately dbMonitor seems to take as more and more memory while running up to a bad handling of Out-Of-Memory execeptions spamming the screen and not even allowing to cleanly shutdown the dbMonitor application (except by killing the process).

    It would be great to fix that, e.g. by auto-pruning process logs when…

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. The parameters will be generated like they were created in oracle, sqlserver, mysql, etc. We can setup naming roles for parameters names of the generated methods.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. Unfortunately it is necessary to start EntityDevoloper with Admin-Rights. That means, DE is useless for compannies with strict user policies (just normal user rights for all users). It would be very helpful to modify the configuration settings to store at a place accessible for all users!

    39 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. If I define an extended property with name "GetAllEntitiesControllerAllowedForRoles" this is shown in IDE as "Get All Entities Controller Allowed For Roles" but I would like it to be shown as "GetAllEntities-Controller allowed for which roles". So it would be nice to have a displayName-attribute like in "normal" properties.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. This will be a very good idea to provide database support for this serverless database toy our product

    6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. A few of our class names come out of the regenerate model needing slight changes. Give the user the ability to add mapping of generated name to the name they want to use. And give the user the ability to save this mapping to a file where they choose. Every time I regenerate I need to manually map the names.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. VistaDB is a great database Engine we use it allot for many small projects. it will be great that support for development of VistaDB solutions will be added to the Entity Developer product using the Entity Framework support

    18 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. Would be good to allow customizing the error message for MaxLength attribute to say what MaxLength is limited to.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. situation: we have customer extensions for our application , e.g. because of added specific tables.
    all customer extensions also use the common part of DaBa-Tables.

    need: i would like to maintain the common tables/mappings in diagram1 and inherit from this one in customer specific diagrams, where i only maintain additional table mappings and can set relations to the common tables.

    5 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?