8

次の列を持つテーブルがあります。

ContractorId ......... INT ............. IDENTITY
ContractorName ........ Varchar(50) ........ PK
ContractorGrade ... .... Varchar(3) ....... PK

PetaPoco T4 テンプレートによって生成されたクラスは次のようになります。

[TableName("contractor_master")]
[PrimaryKey("contractorname", autoIncrement=false)]
[ExplicitColumns]
public partial class contractor_master : TubewellRepo.Record<contractor_master>  
{
    [Column] 
    public int contractorid 
    { 
        get
        {
            return _contractorid;
        }
        set
        {
            _contractorid = value;
            MarkColumnModified("contractorid");
        }
    }
    int _contractorid;

    [Column] 
    public string contractorname 
    { 
        get
        {
            return _contractorname;
        }
        set
        {
            _contractorname = value;
            MarkColumnModified("contractorname");
        }
    }
    string _contractorname;

    [Column] 
    public string contractorgrade 
    { 
        get
        {
            return _contractorgrade;
        }
        set
        {
            _contractorgrade = value;
            MarkColumnModified("contractorgrade");
        }
    }
    string _contractorgrade;
  }

新しいレコードを挿入するコードは次のとおりです。

// Insert a record
var Contractor=new contractor_master();
Contractor.contractorname = "Super Borewells";
Contractor.contractorgrade = "A";

db.Insert(Contractor);

クラス コードの 2 行目で、複合キー (ContractorName + ContractorGrade) を指定する方法を知りたいです。

次に、Id 列が必要なため、レコードを挿入していません。ContractorId は IDENTITY ですが、主キーではありません。

IDENTITY列に0を挿入しているため、新しいレコードを挿入しておらず、エラーが発生します。

4

3 に答える 3

7

ここの私のブランチ: https://github.com/schotime/petapoco は、次のように PrimaryKey 属性を指定することにより、複合主キーをサポートします。

[PrimaryKey("ContractorName,ContractorGrade")]

そこにもID列が必要な場合、どのように機能するかわかりません。

于 2012-06-27T08:26:52.123 に答える
2

IsNew() をサポートするには、次の変更を加える必要がありました

// Check if a poco represents a new record
        public bool IsNew(string primaryKeyName, object poco)
        {
            var pd = PocoData.ForObject(poco, primaryKeyName);
            object pk;
            PocoColumn pc;
            if (pd.Columns.TryGetValue(primaryKeyName, out pc))
            {
                pk = pc.GetValue(poco);
            }
#if !PETAPOCO_NO_DYNAMIC
            else if (poco.GetType() == typeof(System.Dynamic.ExpandoObject))
            {
                return true;
            }
#endif
            else if (primaryKeyName.Contains(","))
            {
                return primaryKeyName.Split(',')
                    .Select(pkPart => GetValue(pkPart, poco))
                    .Any(pkValue => IsDefaultOrNull(pkValue));
            }
            else
            {
                pk = GetValue(primaryKeyName, poco);
            }

            return IsDefaultOrNull(pk);
        }

        private static object GetValue(string primaryKeyName, object poco)
        {
            object pk;
            var pi = poco.GetType().GetProperty(primaryKeyName);
            if (pi == null)
                throw new ArgumentException(
                    string.Format("The object doesn't have a property matching the primary key column name '{0}'",
                                  primaryKeyName));
            pk = pi.GetValue(poco, null);
            return pk;
        }

        private static bool IsDefaultOrNull(object pk)
        {
            if (pk == null)
                return true;

            var type = pk.GetType();

            if (type.IsValueType)
            {
                // Common primary key types
                if (type == typeof(long))
                    return (long)pk == default(long);
                else if (type == typeof(ulong))
                    return (ulong)pk == default(ulong);
                else if (type == typeof(int))
                    return (int)pk == default(int);
                else if (type == typeof(uint))
                    return (uint)pk == default(uint);
                else if (type == typeof(Guid))
                    return (Guid)pk == default(Guid);

                // Create a default instance and compare
                return pk == Activator.CreateInstance(pk.GetType());
            }
            else
            {
                return pk == null;
            }
        }
于 2013-01-17T03:23:43.393 に答える
0

現在、 CompositeKeySuppport ブランチがあることがわかります。これは、公式リポジトリですぐにサポートされる可能性が高く、NuGet の更新などを取得できることを意味します。

于 2016-09-24T11:48:05.973 に答える