예제 #1
0
        void AddConventionForHasOne(dynamic callInfo)
        {
            var repository = RepositoryFor(Pluralize(callInfo.Name), callInfo.Instance.__ConnectionString__());

            var hasOne = new HasOne(repository, callInfo.Name);

            hasOne.ForeignKey = "Id";

            InitAssociation(hasOne, callInfo.Instance);
        }
예제 #2
0
파일: Association.cs 프로젝트: eugman/Oak
        void AddConventionForHasOne(dynamic callInfo)
        {
            var repository = RepositoryFor(Pluralize(callInfo.Name), callInfo.Instance.__ConnectionString__());

            var hasOne = new HasOne(repository, callInfo.Name);

            hasOne.ForeignKey = "Id";

            InitAssociation(hasOne, callInfo.Instance);
        }