Skip to content

Commit b69c2a2

Browse files
committed
PascalCase
1 parent ba756e1 commit b69c2a2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Orm/Xtensive.Orm/Sql/SqlDml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ namespace Xtensive.Sql
2121
public static class SqlDml
2222
{
2323
private static readonly Type
24-
sqlArrayType = typeof(SqlArray<>),
25-
sqlLiteralType = typeof(SqlLiteral<>);
24+
SqlArrayType = typeof(SqlArray<>),
25+
SqlLiteralType = typeof(SqlLiteral<>);
2626

2727
public static readonly SqlDefaultValue DefaultValue = new SqlDefaultValue();
2828
public static readonly SqlNull Null = new SqlNull();
@@ -154,7 +154,7 @@ public static SqlArray Array(IEnumerable<object> values)
154154
if (!itemType.IsAssignableFrom(t))
155155
throw new ArgumentException(Strings.ExTypesOfValuesAreDifferent);
156156
}
157-
var resultType = sqlArrayType.CachedMakeGenericType(itemType);
157+
var resultType = SqlArrayType.CachedMakeGenericType(itemType);
158158
var result = Activator.CreateInstance(
159159
resultType,
160160
BindingFlags.CreateInstance | BindingFlags.Instance | BindingFlags.NonPublic,
@@ -974,7 +974,7 @@ public static SqlLiteral<Guid> Literal(Guid value)
974974
public static SqlLiteral Literal(object value)
975975
{
976976
var valueType = value.GetType();
977-
var resultType = sqlLiteralType.CachedMakeGenericType(valueType);
977+
var resultType = SqlLiteralType.CachedMakeGenericType(valueType);
978978
var result = Activator.CreateInstance(
979979
resultType,
980980
BindingFlags.CreateInstance | BindingFlags.Instance | BindingFlags.NonPublic,

0 commit comments

Comments
 (0)