Entity Framework in memory on MS SQL Azure

Can memory be used in the Entity Framework in an Azure MS SQL database?

Azure has in memory MS SQL databases: Azar Azure

If possible, are there any flaws?

+4
source share
1 answer

Yes, you can use EF if you complete all of the criteria below.

Databases that are at the premium service level.

Databases created after using the OLTP functions in memory have become active.

A new database cannot support OLTP in memory if it is restored from a database that was created before the OLTP functions in memory became active.

Transact-SQL, OLTP

, Transact-SQL , , Transact-SQL . , .

SQL Server 2016

(MARS): OLTP MARS . . MARS , . MARS Entity Framework OLTP .

enter image description here

?

, T-SQL , . , . , , .

+2

Source: https://habr.com/ru/post/1652652/


All Articles