locked
What is modern equivalent of datatables that mirrored disk when using TableAdapters RRS feed

  • Question

  • User1604699451 posted

    I'm rewriting a 2005 era asp.net app that uses tableadapters, and relies on the in-memory datatables to have fast and frequent redisplay access to a table that is written to by several users, sort of like a discussion.

    What is a more modern technology in .net (likely MVC EF)  for having those in-memory tables that mirror disk, ?

    Friday, May 27, 2016 10:31 PM

Answers

  • User1559292362 posted

    Hi codequest,

    What is a more modern technology in .net (likely MVC EF)  for having those in-memory tables that mirror disk, ?

    I recommend you use entity framework, which is to allow you to map your database to your business objects.

    Entity Framework (EF) is an object-relational mapper that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write.

    For more information, please refer to:

    https://msdn.microsoft.com/en-sg/data/ee712907

    Best regards,

    Cole Wu

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Saturday, May 28, 2016 8:48 AM