I want to ignore Reference only with some service. In this case AutoQuery is use has a reporting source. But I have other service for business logic that need Reference field.
The [IgnoreDataMember] attribute only applies to serialization so will not impact usage in OrmLite. If you want serialization to be different you would need to copy it into a different DTO without the properties you don’t want serialized.
Ok, Because I use the AutoQuery Browser as a tool for reporting (export csv) maybe I can consider to use a View or a Store Proc… In that case I would be able to modify the View or SP without re-deploying my back-end service.
Can I expose dynamics to one of the AutoQuery implementation. Any samples I can try.