开发者

Do LINQ to SQL dbml definitions store collation information?

开发者 https://www.devze.com 2023-02-07 21:07 出处:网络
Do LINQ to SQL dbml definitions store collation information? I need to change the collation of a database and would like to know if I need to re-generate the dbml files to reflect this change开发者_开

Do LINQ to SQL dbml definitions store collation information?

I need to change the collation of a database and would like to know if I need to re-generate the dbml files to reflect this change开发者_开发百科.


LINQ to SQL does not store collation in the DBML file (LINQ to SQL).

Restrictions/Difference from .NET

SQL uses collations to determine equality and ordering of strings. These can be specified on a SQL Server Instance, a database, a table column, or an expression.

The translations of the functions implemented so far do not change the collation or specify a different collation on the translated expressions. So if the default collation is case-insensitive, functions like CompareTo or IndexOf can give results that differ from what the (case sensitive) .NET functions would give.

0

精彩评论

暂无评论...
验证码 换一张
取 消