コード例 #1
0
ファイル: IdPart.cs プロジェクト: eb2tech/ManagedEsentMapper
		void IMappingPart.MapObjectToColumn(Session session, JET_TABLEID table, object sourceObj)
		{
			Latebound binder = new Latebound(sourceObj);
			Setter(session, table, Name, binder[Name]);
		}
コード例 #2
0
ファイル: IdPart.cs プロジェクト: eb2tech/ManagedEsentMapper
		object IAccessingPart.GetValue(object sourceObj)
		{
			Latebound binder = new Latebound(sourceObj);
			return binder[Name];
		}
コード例 #3
0
ファイル: IdPart.cs プロジェクト: eb2tech/ManagedEsentMapper
		void IMappingPart.MapColumnToObject(Session session, JET_TABLEID table, object targetObj)
		{
			Latebound binder = new Latebound(targetObj);
			binder[Name] = Getter(session, table, Name);
		}