Beispiel #1
0
		void IMappingPart.MapObjectToColumn(Session session, JET_TABLEID table, object sourceObj)
		{
			Latebound binder = new Latebound(sourceObj);
			Setter(session, table, Name, binder[Name]);
		}
Beispiel #2
0
		object IAccessingPart.GetValue(object sourceObj)
		{
			Latebound binder = new Latebound(sourceObj);
			return binder[Name];
		}
Beispiel #3
0
		void IMappingPart.MapColumnToObject(Session session, JET_TABLEID table, object targetObj)
		{
			Latebound binder = new Latebound(targetObj);
			binder[Name] = Getter(session, table, Name);
		}