コード例 #1
0
 public virtual void MapComponent(PropertyInfo member, EntityMap map)
 {
 }
コード例 #2
0
        public virtual EntityMap CreateEntityMap(Type type)
        {
            var map = new EntityMap();
            map.EntityType = type;
            map.CurrentUserParameter = _currentUserParameter;

            return map;
        }
コード例 #3
0
ファイル: EntityModel.cs プロジェクト: codefire-sa/framework
 public EntityModel(EntityMap map)
 {
     _map = map;
     _queryPlan = BuildQueryPlan();
 }