Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/295.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何将数据库从windows phone 8升级到windows phone 8.1_C#_Sqlite_Windows Phone 8_Windows Phone 8.1_Win Universal App - Fatal编程技术网

C# 如何将数据库从windows phone 8升级到windows phone 8.1

C# 如何将数据库从windows phone 8升级到windows phone 8.1,c#,sqlite,windows-phone-8,windows-phone-8.1,win-universal-app,C#,Sqlite,Windows Phone 8,Windows Phone 8.1,Win Universal App,我读到8.1通用应用程序不支持SQL CE。我有一个应用程序发布在市场上使用SQL CE。我想使此应用程序成为通用应用程序。在这种情况下,我如何处理升级 如何将SQL CE从silverlight应用程序升级到SQL lite universal应用程序??有什么想法吗?目前我正在将数据保存到一个文件中。因为在8.1版本中,文件将保持相同的格式。我阅读了8.1版本的文件,将数据转换为我的新模型,并将其保存在新的db模式中 我现在正在使用CSV库,将旧模型数据转换为文件。1:使用sqlite制作S

我读到8.1通用应用程序不支持SQL CE。我有一个应用程序发布在市场上使用SQL CE。我想使此应用程序成为通用应用程序。在这种情况下,我如何处理升级


如何将SQL CE从silverlight应用程序升级到SQL lite universal应用程序??有什么想法吗?

目前我正在将数据保存到一个文件中。因为在8.1版本中,文件将保持相同的格式。我阅读了8.1版本的文件,将数据转换为我的新模型,并将其保存在新的db模式中


我现在正在使用CSV库,将旧模型数据转换为文件。

1:使用sqlite制作Silverlght应用程序2:添加代码将数据从SQL CE迁移到sqlite 3:将应用程序升级到UniversalAlif如果用户a使用SQL CE在版本1上,但他没有升级到版本2,后者在silverlight上将CE迁移到SQL,但他升级到universal,那么他的数据库就不能工作了。对吗?没错,第22条……那太糟糕了。没有其他方法升级DB?1:在旧应用中添加功能以将用户数据上载到云服务2:在新应用中添加功能(必须是新的,而不是更新)以从云下载用户数据。