public static ICqlCommandBuilderTo FromPoco(this ICqlCommandBuilderFrom @this)
        {
            var factory = EnglightenmentMgr.PocoDataMapperFactory();

            return(@this.Set(factory));
        }
Beispiel #2
0
        public static ICqlCommandBuilderTo FromPropertyBag(this ICqlCommandBuilderFrom @this)
        {
            var factory = EnlightenmentMgr.PropertyBagDataMapperFactory();

            return(@this.Set(factory));
        }
Beispiel #3
0
        public static ICqlCommandBuilderTo FromOrdinal(this ICqlCommandBuilderFrom @this)
        {
            var factory = EnlightenmentMgr.OrdinalDataMapperFactory();

            return(@this.Set(factory));
        }