sql server - What .sdf files. How it is different from .mdf files. Does it work with linq to Sql? -
I am playing with wpf and when I have created a database, it is made with SDF files. I want to know the details of the SDF files. Is it different from standard .MDF files and will they support SQL to SQL? Because I can not use it with Linux files.
An SDF file is a SQL Server mobile file. It is also known as SQL Server Compact, it is mainly used in mobile development, but recently a single user is more common in desktop development.
Visual Studio 2008 SQL Server does not support SQL for Linux, but the framework does allow you to get more information about implementing it.
You can use SQL Server You can get more information on mobile, this link will help explain the differences between this and MDF used by SQL Server.
Using SQL Mobile / Compact, there is also an article on how to build a SQL model from Linux for WPF. One of the main differences between SDF and MDF is that until recently an MDF could not be opened and treated as a normal file, while accessing it as a SDF file. Although this concept was duplicated in Visual Studio by allowing SQL Server data files that dynamically engages MDF in an SDL server express session.
Comments
Post a Comment