本文介绍了如何在SQL Compact 4.0中对列进行排序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用sql compact 4.0来查看我的数据库表。第一列是 Id ,默认情况下不会对表的行进行升序排序。我添加了一个示例来显示案例,其中207和208在196之前出现。



[ ]

如何默认对该列进行升序排序?



我的尝试:



Hi, I am using sql compact 4.0 to view my database table. The first column is Id, which does not sort the table's rows ascendingly by default. I have added an example to show the case, where 207 and 208 come before 196.

sql compact 4 — Postimage.org[^]
How can I sort this column ascendingly by default?

What I have tried:

[Key]
[Index]        
public int Id { get; set; }





但它不起作用。



But it is not working.

推荐答案


这篇关于如何在SQL Compact 4.0中对列进行排序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 04:13