You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -1,28 +1,33 @@
|
||||
namespace System.Data.DataSetExtensions
|
||||
{
|
||||
static class Strings
|
||||
static partial class Strings
|
||||
{
|
||||
public const string DataSetLinq_CannotCompareDeletedRow = "DataSetLinq_CannotCompareDeletedRow";
|
||||
public const string DataSetLinq_CannotLoadDeletedRow = "DataSetLinq_CannotLoadDeletedRow";
|
||||
public const string DataSetLinq_CannotLoadDetachedRow = "DataSetLinq_CannotLoadDetachedRow";
|
||||
public const string DataSetLinq_EmptyDataRowSource = "DataSetLinq_EmptyDataRowSource";
|
||||
public const string DataSetLinq_NullDataRow = "DataSetLinq_NullDataRow";
|
||||
public const string LDVRowStateError = "LDVRowStateError";
|
||||
public const string ToLDVUnsupported = "ToLDVUnsupported";
|
||||
const string DataSetLinq_InvalidEnumerationValue_ = "The {0} enumeration value, {1}, is not valid.";
|
||||
public const string DataSetLinq_EmptyDataRowSource = "The source contains no DataRows.";
|
||||
public const string DataSetLinq_NullDataRow = "The source contains a DataRow reference that is null.";
|
||||
public const string DataSetLinq_CannotLoadDeletedRow = "The source contains a deleted DataRow that cannot be copied to the DataTable.";
|
||||
public const string DataSetLinq_CannotLoadDetachedRow = "The source contains a detached DataRow that cannot be copied to the DataTable.";
|
||||
public const string DataSetLinq_CannotCompareDeletedRow = "The DataRowComparer does not work with DataRows that have been deleted since it only compares current values.";
|
||||
const string DataSetLinq_NonNullableCast_ = "Cannot cast DBNull.Value to type '{0}'. Please use a nullable type.";
|
||||
public const string ToLDVUnsupported = "Can not create DataView after using projection";
|
||||
const string LDV_InvalidNumOfKeys_ = "Must provide '{0}' keys to find";
|
||||
|
||||
public static string DataSetLinq_InvalidEnumerationValue (params object[] args)
|
||||
{
|
||||
return SR.GetString ("DataSetLinq_InvalidEnumerationValue", args);
|
||||
return SR.GetString (DataSetLinq_InvalidEnumerationValue_, args);
|
||||
}
|
||||
|
||||
public static string DataSetLinq_NonNullableCast (object arg)
|
||||
{
|
||||
return SR.GetString ("DataSetLinq_NonNullableCast", arg);
|
||||
return SR.GetString (DataSetLinq_NonNullableCast_, arg);
|
||||
}
|
||||
|
||||
public static string LDV_InvalidNumOfKeys (params object[] args)
|
||||
{
|
||||
return SR.GetString ("LDV_InvalidNumOfKeys", args);
|
||||
return SR.GetString (LDV_InvalidNumOfKeys_, args);
|
||||
}
|
||||
|
||||
// Missing
|
||||
public const string LDVRowStateError = "LDVRowStateError";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user