OM
Size: a a a
OM
VS
M
VP
VP
VP
VS
VS
VS
public interface IPrimaryKey<T1, T2, T3, T4, T5, T6, T7>
{
(Expression<Func<T1>>, Expression<Func<T2>>, Expression<Func<T3>>, Expression<Func<T4>>, Expression<Func<T5>>, Expression<Func<T6>>, Expression<Func<T7>>) PrimaryKey { get; }
}
public interface IPrimaryKey<T1, T2, T3, T4, T5, T6, T7, T8>
{
(Expression<Func<T1>>, Expression<Func<T2>>, Expression<Func<T3>>, Expression<Func<T4>>, Expression<Func<T5>>, Expression<Func<T6>>, Expression<Func<T7>>, Expression<Func<T8>>) PrimaryKey { get; }
}
OM
VS
VK
public interface IPrimaryKey<T1, T2, T3, T4, T5, T6, T7>
{
(Expression<Func<T1>>, Expression<Func<T2>>, Expression<Func<T3>>, Expression<Func<T4>>, Expression<Func<T5>>, Expression<Func<T6>>, Expression<Func<T7>>) PrimaryKey { get; }
}
public interface IPrimaryKey<T1, T2, T3, T4, T5, T6, T7, T8>
{
(Expression<Func<T1>>, Expression<Func<T2>>, Expression<Func<T3>>, Expression<Func<T4>>, Expression<Func<T5>>, Expression<Func<T6>>, Expression<Func<T7>>, Expression<Func<T8>>) PrimaryKey { get; }
}
VS
OM
VS
VS
VS
public bool IsEntityType(Type t)
{
if (t.IsValueType) return false;
if (t.IsEnum) return false;
if (t.Namespace == "System" || t.Namespace.StartsWith("System.")) return false;
return true;
}
VS
VS