vikrant bagal

vikrant bagal

  • NA
  • 3
  • 558

I want to Map as custom SQL which will return same fields wi

Oct 9 2015 5:06 AM

I want to Map as custom SQL which will return same fields with tracking from Table as Follows

Entity :

public class Foo { public int Id{get;set;} public string Name{get;set;} }  Table Foo: Id int not Null, Name varchar(max)

cutom Sql :

Select Id , dbo.decript(Name) as Name from Foo 

I am going to map Stored Procs for insert and update


Answers (1)