Strings.cs 257 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721
  1. namespace System.Data.Entity
  2. {
  3. public static class Strings
  4. {
  5. public static string ADP_CollectionParameterElementIsNull (object p0)
  6. {
  7. return SR.GetString (SR.ADP_CollectionParameterElementIsNull, p0 );
  8. }
  9. public static string ADP_CollectionParameterElementIsNullOrEmpty (object p0)
  10. {
  11. return SR.GetString (SR.ADP_CollectionParameterElementIsNullOrEmpty, p0 );
  12. }
  13. public static string ADP_ConnectionStringSyntax (object p0)
  14. {
  15. return SR.GetString (SR.ADP_ConnectionStringSyntax, p0 );
  16. }
  17. public static string ADP_DataReaderClosed (object p0)
  18. {
  19. return SR.GetString (SR.ADP_DataReaderClosed, p0 );
  20. }
  21. public static string ADP_InternalProviderError (object p0)
  22. {
  23. return SR.GetString (SR.ADP_InternalProviderError, p0 );
  24. }
  25. public static string ADP_InvalidBufferSizeOrIndex (object p0, object p1)
  26. {
  27. return SR.GetString (SR.ADP_InvalidBufferSizeOrIndex, p0, p1 );
  28. }
  29. public static string ADP_InvalidConnectionOptionValue (object p0)
  30. {
  31. return SR.GetString (SR.ADP_InvalidConnectionOptionValue, p0 );
  32. }
  33. public static string ADP_InvalidDataLength (object p0)
  34. {
  35. return SR.GetString (SR.ADP_InvalidDataLength, p0 );
  36. }
  37. public static string ADP_InvalidDataReaderMissingColumnForType (object p0, object p1)
  38. {
  39. return SR.GetString (SR.ADP_InvalidDataReaderMissingColumnForType, p0, p1 );
  40. }
  41. public static string ADP_InvalidDataReaderMissingDiscriminatorColumn (object p0, object p1)
  42. {
  43. return SR.GetString (SR.ADP_InvalidDataReaderMissingDiscriminatorColumn, p0, p1 );
  44. }
  45. public static string ADP_InvalidDataReaderUnableToMaterializeNonScalarType (object p0, object p1)
  46. {
  47. return SR.GetString (SR.ADP_InvalidDataReaderUnableToMaterializeNonScalarType, p0, p1 );
  48. }
  49. public static string ADP_InvalidDataType (object p0)
  50. {
  51. return SR.GetString (SR.ADP_InvalidDataType, p0 );
  52. }
  53. public static string ADP_InvalidDestinationBufferIndex (object p0, object p1)
  54. {
  55. return SR.GetString (SR.ADP_InvalidDestinationBufferIndex, p0, p1 );
  56. }
  57. public static string ADP_InvalidEnumerationValue (object p0, object p1)
  58. {
  59. return SR.GetString (SR.ADP_InvalidEnumerationValue, p0, p1 );
  60. }
  61. public static string ADP_InvalidSizeValue (object p0)
  62. {
  63. return SR.GetString (SR.ADP_InvalidSizeValue, p0 );
  64. }
  65. public static string ADP_InvalidSourceBufferIndex (object p0, object p1)
  66. {
  67. return SR.GetString (SR.ADP_InvalidSourceBufferIndex, p0, p1 );
  68. }
  69. public static string ADP_KeysRequiredForJoinOverNest (object p0)
  70. {
  71. return SR.GetString (SR.ADP_KeysRequiredForJoinOverNest, p0 );
  72. }
  73. public static string ADP_KeywordNotSupported (object p0)
  74. {
  75. return SR.GetString (SR.ADP_KeywordNotSupported, p0 );
  76. }
  77. public static string ADP_NestingNotSupported (object p0, object p1)
  78. {
  79. return SR.GetString (SR.ADP_NestingNotSupported, p0, p1 );
  80. }
  81. public static string ADP_NonSequentialChunkAccess (object p0, object p1, object p2)
  82. {
  83. return SR.GetString (SR.ADP_NonSequentialChunkAccess, p0, p1, p2 );
  84. }
  85. public static string ADP_NonSequentialColumnAccess (object p0, object p1)
  86. {
  87. return SR.GetString (SR.ADP_NonSequentialColumnAccess, p0, p1 );
  88. }
  89. public static string ADP_NoQueryMappingView (object p0, object p1)
  90. {
  91. return SR.GetString (SR.ADP_NoQueryMappingView, p0, p1 );
  92. }
  93. public static string ADP_UnknownDataTypeCode (object p0, object p1)
  94. {
  95. return SR.GetString (SR.ADP_UnknownDataTypeCode, p0, p1 );
  96. }
  97. public static string AliasNameAlreadyUsed (object p0)
  98. {
  99. return SR.GetString (SR.AliasNameAlreadyUsed, p0 );
  100. }
  101. public static string AliasNameIsAlreadyDefined (object p0)
  102. {
  103. return SR.GetString (SR.AliasNameIsAlreadyDefined, p0 );
  104. }
  105. public static string AllArtifactsMustTargetSameProvider_InvariantName (object p0, object p1)
  106. {
  107. return SR.GetString (SR.AllArtifactsMustTargetSameProvider_InvariantName, p0, p1 );
  108. }
  109. public static string AllArtifactsMustTargetSameProvider_ManifestToken (object p0, object p1)
  110. {
  111. return SR.GetString (SR.AllArtifactsMustTargetSameProvider_ManifestToken, p0, p1 );
  112. }
  113. public static string AmbiguousEntityContainerEnd (object p0, object p1)
  114. {
  115. return SR.GetString (SR.AmbiguousEntityContainerEnd, p0, p1 );
  116. }
  117. public static string AmbiguousFunctionAndType (object p0, object p1)
  118. {
  119. return SR.GetString (SR.AmbiguousFunctionAndType, p0, p1 );
  120. }
  121. public static string AmbiguousFunctionOverload (object p0, object p1)
  122. {
  123. return SR.GetString (SR.AmbiguousFunctionOverload, p0, p1 );
  124. }
  125. public static string AmbiguousMetadataMemberName (object p0, object p1, object p2)
  126. {
  127. return SR.GetString (SR.AmbiguousMetadataMemberName, p0, p1, p2 );
  128. }
  129. public static string ArgumentOutOfRange (object p0)
  130. {
  131. return SR.GetString (SR.ArgumentOutOfRange, p0 );
  132. }
  133. public static string ArgumentOutOfRangeExpectedPostiveNumber (object p0)
  134. {
  135. return SR.GetString (SR.ArgumentOutOfRangeExpectedPostiveNumber, p0 );
  136. }
  137. public static string ArgumentTypesAreIncompatible (object p0, object p1)
  138. {
  139. return SR.GetString (SR.ArgumentTypesAreIncompatible, p0, p1 );
  140. }
  141. public static string AssemblyMissingFromAssembliesToConsider (object p0)
  142. {
  143. return SR.GetString (SR.AssemblyMissingFromAssembliesToConsider, p0 );
  144. }
  145. public static string BadNamespaceOrAlias (object p0)
  146. {
  147. return SR.GetString (SR.BadNamespaceOrAlias, p0 );
  148. }
  149. public static string BadNavigationPropertyBadFromRoleType (object p0, object p1, object p2, object p3, object p4)
  150. {
  151. return SR.GetString (SR.BadNavigationPropertyBadFromRoleType, p0, p1, p2, p3, p4 );
  152. }
  153. public static string BadNavigationPropertyRelationshipNotRelationship (object p0)
  154. {
  155. return SR.GetString (SR.BadNavigationPropertyRelationshipNotRelationship, p0 );
  156. }
  157. public static string BadNavigationPropertyUndefinedRole (object p0, object p1)
  158. {
  159. return SR.GetString (SR.BadNavigationPropertyUndefinedRole, p0, p1 );
  160. }
  161. public static string BadParameterDirection (object p0, object p1, object p2, object p3)
  162. {
  163. return SR.GetString (SR.BadParameterDirection, p0, p1, p2, p3 );
  164. }
  165. public static string BadParameterDirectionForComposableFunctions (object p0, object p1, object p2, object p3)
  166. {
  167. return SR.GetString (SR.BadParameterDirectionForComposableFunctions, p0, p1, p2, p3 );
  168. }
  169. public static string BadPrecisionAndScale (object p0, object p1)
  170. {
  171. return SR.GetString (SR.BadPrecisionAndScale, p0, p1 );
  172. }
  173. public static string BetweenLimitsTypesAreNotCompatible (object p0, object p1)
  174. {
  175. return SR.GetString (SR.BetweenLimitsTypesAreNotCompatible, p0, p1 );
  176. }
  177. public static string BetweenLimitsTypesAreNotOrderComparable (object p0, object p1)
  178. {
  179. return SR.GetString (SR.BetweenLimitsTypesAreNotOrderComparable, p0, p1 );
  180. }
  181. public static string BetweenValueIsNotOrderComparable (object p0, object p1)
  182. {
  183. return SR.GetString (SR.BetweenValueIsNotOrderComparable, p0, p1 );
  184. }
  185. public static string BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet (object p0, object p1)
  186. {
  187. return SR.GetString (SR.BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet, p0, p1 );
  188. }
  189. public static string CannotCallNoncomposableFunction (object p0)
  190. {
  191. return SR.GetString (SR.CannotCallNoncomposableFunction, p0 );
  192. }
  193. public static string CannotConvertNumericLiteral (object p0, object p1)
  194. {
  195. return SR.GetString (SR.CannotConvertNumericLiteral, p0, p1 );
  196. }
  197. public static string CannotInstantiateAbstractType (object p0)
  198. {
  199. return SR.GetString (SR.CannotInstantiateAbstractType, p0 );
  200. }
  201. public static string CannotResolveNameToTypeOrFunction (object p0)
  202. {
  203. return SR.GetString (SR.CannotResolveNameToTypeOrFunction, p0 );
  204. }
  205. public static string CannotUseSystemNamespaceAsAlias (object p0)
  206. {
  207. return SR.GetString (SR.CannotUseSystemNamespaceAsAlias, p0 );
  208. }
  209. public static string CheckArgumentContainsNullFailed (object p0)
  210. {
  211. return SR.GetString (SR.CheckArgumentContainsNullFailed, p0 );
  212. }
  213. public static string CodeGen_ConstructorNoParameterless (object p0)
  214. {
  215. return SR.GetString (SR.CodeGen_ConstructorNoParameterless, p0 );
  216. }
  217. public static string Collections_CannotFillTryDifferentMergeOption (object p0, object p1)
  218. {
  219. return SR.GetString (SR.Collections_CannotFillTryDifferentMergeOption, p0, p1 );
  220. }
  221. public static string Collections_ExpectedCollectionGotReference (object p0, object p1, object p2)
  222. {
  223. return SR.GetString (SR.Collections_ExpectedCollectionGotReference, p0, p1, p2 );
  224. }
  225. public static string Collections_InvalidEntityStateLoad (object p0)
  226. {
  227. return SR.GetString (SR.Collections_InvalidEntityStateLoad, p0 );
  228. }
  229. public static string Collections_NoRelationshipSetMatched (object p0)
  230. {
  231. return SR.GetString (SR.Collections_NoRelationshipSetMatched, p0 );
  232. }
  233. public static string CompiledELinq_UnsupportedNamedParameterType (object p0, object p1)
  234. {
  235. return SR.GetString (SR.CompiledELinq_UnsupportedNamedParameterType, p0, p1 );
  236. }
  237. public static string CompiledELinq_UnsupportedNamedParameterUseAsType (object p0, object p1)
  238. {
  239. return SR.GetString (SR.CompiledELinq_UnsupportedNamedParameterUseAsType, p0, p1 );
  240. }
  241. public static string CompiledELinq_UnsupportedParameterTypes (object p0)
  242. {
  243. return SR.GetString (SR.CompiledELinq_UnsupportedParameterTypes, p0 );
  244. }
  245. public static string ComplexObject_ComplexChangeRequestedOnScalarProperty (object p0)
  246. {
  247. return SR.GetString (SR.ComplexObject_ComplexChangeRequestedOnScalarProperty, p0 );
  248. }
  249. public static string ComplexObject_NullableComplexTypesNotSupported (object p0)
  250. {
  251. return SR.GetString (SR.ComplexObject_NullableComplexTypesNotSupported, p0 );
  252. }
  253. public static string ComplexTypeAsReturnTypeAndDefinedEntitySet (object p0, object p1)
  254. {
  255. return SR.GetString (SR.ComplexTypeAsReturnTypeAndDefinedEntitySet, p0, p1 );
  256. }
  257. public static string ComplexTypeAsReturnTypeAndNestedComplexProperty (object p0, object p1, object p2)
  258. {
  259. return SR.GetString (SR.ComplexTypeAsReturnTypeAndNestedComplexProperty, p0, p1, p2 );
  260. }
  261. public static string ConcurrencyRedefinedOnSubTypeOfEntitySetType (object p0, object p1, object p2)
  262. {
  263. return SR.GetString (SR.ConcurrencyRedefinedOnSubTypeOfEntitySetType, p0, p1, p2 );
  264. }
  265. public static string ConstantFacetSpecifiedInSchema (object p0, object p1)
  266. {
  267. return SR.GetString (SR.ConstantFacetSpecifiedInSchema, p0, p1 );
  268. }
  269. public static string CouldNotResolveIdentifier (object p0)
  270. {
  271. return SR.GetString (SR.CouldNotResolveIdentifier, p0 );
  272. }
  273. public static string Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus (object p0)
  274. {
  275. return SR.GetString (SR.Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus, p0 );
  276. }
  277. public static string Cqt_Binary_CollectionsRequired (object p0)
  278. {
  279. return SR.GetString (SR.Cqt_Binary_CollectionsRequired, p0 );
  280. }
  281. public static string Cqt_Cast_InvalidCast (object p0, object p1)
  282. {
  283. return SR.GetString (SR.Cqt_Cast_InvalidCast, p0, p1 );
  284. }
  285. public static string Cqt_CommandTree_InvalidParameterName (object p0)
  286. {
  287. return SR.GetString (SR.Cqt_CommandTree_InvalidParameterName, p0 );
  288. }
  289. public static string Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType (object p0, object p1, object p2)
  290. {
  291. return SR.GetString (SR.Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType, p0, p1, p2 );
  292. }
  293. public static string Cqt_Constant_InvalidConstantType (object p0)
  294. {
  295. return SR.GetString (SR.Cqt_Constant_InvalidConstantType, p0 );
  296. }
  297. public static string Cqt_Constant_InvalidValueForType (object p0)
  298. {
  299. return SR.GetString (SR.Cqt_Constant_InvalidValueForType, p0 );
  300. }
  301. public static string Cqt_Copier_EndNotFound (object p0, object p1)
  302. {
  303. return SR.GetString (SR.Cqt_Copier_EndNotFound, p0, p1 );
  304. }
  305. public static string Cqt_Copier_EntityContainerNotFound (object p0)
  306. {
  307. return SR.GetString (SR.Cqt_Copier_EntityContainerNotFound, p0 );
  308. }
  309. public static string Cqt_Copier_EntitySetNotFound (object p0, object p1)
  310. {
  311. return SR.GetString (SR.Cqt_Copier_EntitySetNotFound, p0, p1 );
  312. }
  313. public static string Cqt_Copier_FunctionNotFound (object p0)
  314. {
  315. return SR.GetString (SR.Cqt_Copier_FunctionNotFound, p0 );
  316. }
  317. public static string Cqt_Copier_NavPropertyNotFound (object p0, object p1)
  318. {
  319. return SR.GetString (SR.Cqt_Copier_NavPropertyNotFound, p0, p1 );
  320. }
  321. public static string Cqt_Copier_PropertyNotFound (object p0, object p1)
  322. {
  323. return SR.GetString (SR.Cqt_Copier_PropertyNotFound, p0, p1 );
  324. }
  325. public static string Cqt_Copier_TypeNotFound (object p0)
  326. {
  327. return SR.GetString (SR.Cqt_Copier_TypeNotFound, p0 );
  328. }
  329. public static string Cqt_CrossJoin_DuplicateVariableNames (object p0, object p1, object p2)
  330. {
  331. return SR.GetString (SR.Cqt_CrossJoin_DuplicateVariableNames, p0, p1, p2 );
  332. }
  333. public static string Cqt_ExpressionLink_TypeMismatch (object p0, object p1)
  334. {
  335. return SR.GetString (SR.Cqt_ExpressionLink_TypeMismatch, p0, p1 );
  336. }
  337. public static string Cqt_Factory_MethodResultTypeNotSupported (object p0)
  338. {
  339. return SR.GetString (SR.Cqt_Factory_MethodResultTypeNotSupported, p0 );
  340. }
  341. public static string Cqt_Factory_NoSuchProperty (object p0, object p1)
  342. {
  343. return SR.GetString (SR.Cqt_Factory_NoSuchProperty, p0, p1 );
  344. }
  345. public static string Cqt_Function_CanonicalFunction_AmbiguousMatch (object p0)
  346. {
  347. return SR.GetString (SR.Cqt_Function_CanonicalFunction_AmbiguousMatch, p0 );
  348. }
  349. public static string Cqt_Function_CanonicalFunction_NotFound (object p0)
  350. {
  351. return SR.GetString (SR.Cqt_Function_CanonicalFunction_NotFound, p0 );
  352. }
  353. public static string Cqt_General_PolymorphicArgRequired (object p0)
  354. {
  355. return SR.GetString (SR.Cqt_General_PolymorphicArgRequired, p0 );
  356. }
  357. public static string Cqt_General_PolymorphicTypeRequired (object p0)
  358. {
  359. return SR.GetString (SR.Cqt_General_PolymorphicTypeRequired, p0 );
  360. }
  361. public static string Cqt_General_UnsupportedExpression (object p0)
  362. {
  363. return SR.GetString (SR.Cqt_General_UnsupportedExpression, p0 );
  364. }
  365. public static string Cqt_GroupBy_AggregateColumnExistsAsGroupColumn (object p0)
  366. {
  367. return SR.GetString (SR.Cqt_GroupBy_AggregateColumnExistsAsGroupColumn, p0 );
  368. }
  369. public static string Cqt_GroupBy_KeyNotEqualityComparable (object p0)
  370. {
  371. return SR.GetString (SR.Cqt_GroupBy_KeyNotEqualityComparable, p0 );
  372. }
  373. public static string Cqt_InvalidTypeForSetOperation (object p0, object p1)
  374. {
  375. return SR.GetString (SR.Cqt_InvalidTypeForSetOperation, p0, p1 );
  376. }
  377. public static string Cqt_NewInstance_CannotInstantiateAbstractType (object p0)
  378. {
  379. return SR.GetString (SR.Cqt_NewInstance_CannotInstantiateAbstractType, p0 );
  380. }
  381. public static string Cqt_NewInstance_CannotInstantiateMemberlessType (object p0)
  382. {
  383. return SR.GetString (SR.Cqt_NewInstance_CannotInstantiateMemberlessType, p0 );
  384. }
  385. public static string Cqt_RelNav_WrongSourceType (object p0)
  386. {
  387. return SR.GetString (SR.Cqt_RelNav_WrongSourceType, p0 );
  388. }
  389. public static string Cqt_UDF_FunctionDefinitionGenerationFailed (object p0)
  390. {
  391. return SR.GetString (SR.Cqt_UDF_FunctionDefinitionGenerationFailed, p0 );
  392. }
  393. public static string Cqt_UDF_FunctionDefinitionResultTypeMismatch (object p0, object p1, object p2)
  394. {
  395. return SR.GetString (SR.Cqt_UDF_FunctionDefinitionResultTypeMismatch, p0, p1, p2 );
  396. }
  397. public static string Cqt_UDF_FunctionDefinitionWithCircularReference (object p0)
  398. {
  399. return SR.GetString (SR.Cqt_UDF_FunctionDefinitionWithCircularReference, p0 );
  400. }
  401. public static string Cqt_UDF_FunctionHasNoDefinition (object p0)
  402. {
  403. return SR.GetString (SR.Cqt_UDF_FunctionHasNoDefinition, p0 );
  404. }
  405. public static string Cqt_Unary_CollectionRequired (object p0)
  406. {
  407. return SR.GetString (SR.Cqt_Unary_CollectionRequired, p0 );
  408. }
  409. public static string Cqt_Util_CheckListDuplicateName (object p0, object p1, object p2)
  410. {
  411. return SR.GetString (SR.Cqt_Util_CheckListDuplicateName, p0, p1, p2 );
  412. }
  413. public static string Cqt_Validator_InvalidIncompatibleParameterReferences (object p0)
  414. {
  415. return SR.GetString (SR.Cqt_Validator_InvalidIncompatibleParameterReferences, p0 );
  416. }
  417. public static string Cqt_Validator_InvalidIncorrectDataSpaceMetadata (object p0, object p1)
  418. {
  419. return SR.GetString (SR.Cqt_Validator_InvalidIncorrectDataSpaceMetadata, p0, p1 );
  420. }
  421. public static string Cqt_Validator_InvalidOtherWorkspaceMetadata (object p0)
  422. {
  423. return SR.GetString (SR.Cqt_Validator_InvalidOtherWorkspaceMetadata, p0 );
  424. }
  425. public static string Cqt_Validator_VarRefInvalid (object p0)
  426. {
  427. return SR.GetString (SR.Cqt_Validator_VarRefInvalid, p0 );
  428. }
  429. public static string Cqt_Validator_VarRefTypeMismatch (object p0)
  430. {
  431. return SR.GetString (SR.Cqt_Validator_VarRefTypeMismatch, p0 );
  432. }
  433. public static string CreateRefTypeIdentifierMustBeASubOrSuperType (object p0, object p1)
  434. {
  435. return SR.GetString (SR.CreateRefTypeIdentifierMustBeASubOrSuperType, p0, p1 );
  436. }
  437. public static string CreateRefTypeIdentifierMustSpecifyAnEntityType (object p0, object p1)
  438. {
  439. return SR.GetString (SR.CreateRefTypeIdentifierMustSpecifyAnEntityType, p0, p1 );
  440. }
  441. public static string CtxFunction (object p0)
  442. {
  443. return SR.GetString (SR.CtxFunction, p0 );
  444. }
  445. public static string CtxTypeCtor (object p0)
  446. {
  447. return SR.GetString (SR.CtxTypeCtor, p0 );
  448. }
  449. public static string CycleInTypeHierarchy (object p0)
  450. {
  451. return SR.GetString (SR.CycleInTypeHierarchy, p0 );
  452. }
  453. public static string DeRefArgIsNotOfRefType (object p0)
  454. {
  455. return SR.GetString (SR.DeRefArgIsNotOfRefType, p0 );
  456. }
  457. public static string DifferentSchemaVersionInCollection (object p0, object p1, object p2)
  458. {
  459. return SR.GetString (SR.DifferentSchemaVersionInCollection, p0, p1, p2 );
  460. }
  461. public static string DuplicateAnnotation (object p0, object p1)
  462. {
  463. return SR.GetString (SR.DuplicateAnnotation, p0, p1 );
  464. }
  465. public static string DuplicatedFunctionoverloads (object p0, object p1)
  466. {
  467. return SR.GetString (SR.DuplicatedFunctionoverloads, p0, p1 );
  468. }
  469. public static string DuplicatedInlineFunctionOverload (object p0)
  470. {
  471. return SR.GetString (SR.DuplicatedInlineFunctionOverload, p0 );
  472. }
  473. public static string DuplicateEndName (object p0)
  474. {
  475. return SR.GetString (SR.DuplicateEndName, p0 );
  476. }
  477. public static string DuplicateEntityContainerMemberName (object p0)
  478. {
  479. return SR.GetString (SR.DuplicateEntityContainerMemberName, p0 );
  480. }
  481. public static string DuplicateEntitySetTable (object p0, object p1, object p2)
  482. {
  483. return SR.GetString (SR.DuplicateEntitySetTable, p0, p1, p2 );
  484. }
  485. public static string DuplicateMemberName (object p0, object p1, object p2)
  486. {
  487. return SR.GetString (SR.DuplicateMemberName, p0, p1, p2 );
  488. }
  489. public static string DuplicateMemberNameInExtendedEntityContainer (object p0, object p1, object p2)
  490. {
  491. return SR.GetString (SR.DuplicateMemberNameInExtendedEntityContainer, p0, p1, p2 );
  492. }
  493. public static string DuplicatePropertyNameSpecifiedInEntityKey (object p0, object p1)
  494. {
  495. return SR.GetString (SR.DuplicatePropertyNameSpecifiedInEntityKey, p0, p1 );
  496. }
  497. public static string DuplicationOperation (object p0)
  498. {
  499. return SR.GetString (SR.DuplicationOperation, p0 );
  500. }
  501. public static string EdmVersionNotSupportedByRuntime (object p0, object p1)
  502. {
  503. return SR.GetString (SR.EdmVersionNotSupportedByRuntime, p0, p1 );
  504. }
  505. public static string ELinq_EdmFunctionAttributedFunctionWithWrongReturnType (object p0, object p1)
  506. {
  507. return SR.GetString (SR.ELinq_EdmFunctionAttributedFunctionWithWrongReturnType, p0, p1 );
  508. }
  509. public static string ELinq_EdmFunctionAttributeParameterNameNotValid (object p0, object p1, object p2)
  510. {
  511. return SR.GetString (SR.ELinq_EdmFunctionAttributeParameterNameNotValid, p0, p1, p2 );
  512. }
  513. public static string ELinq_InvalidOfTypeResult (object p0)
  514. {
  515. return SR.GetString (SR.ELinq_InvalidOfTypeResult, p0 );
  516. }
  517. public static string ELinq_NotPropertyOrField (object p0)
  518. {
  519. return SR.GetString (SR.ELinq_NotPropertyOrField, p0 );
  520. }
  521. public static string ELinq_UnboundParameterExpression (object p0)
  522. {
  523. return SR.GetString (SR.ELinq_UnboundParameterExpression, p0 );
  524. }
  525. public static string ELinq_UnexpectedTypeForNavigationProperty (object p0, object p1, object p2, object p3)
  526. {
  527. return SR.GetString (SR.ELinq_UnexpectedTypeForNavigationProperty, p0, p1, p2, p3 );
  528. }
  529. public static string ELinq_UnhandledBindingType (object p0)
  530. {
  531. return SR.GetString (SR.ELinq_UnhandledBindingType, p0 );
  532. }
  533. public static string ELinq_UnhandledExpressionType (object p0)
  534. {
  535. return SR.GetString (SR.ELinq_UnhandledExpressionType, p0 );
  536. }
  537. public static string ELinq_UnrecognizedMember (object p0)
  538. {
  539. return SR.GetString (SR.ELinq_UnrecognizedMember, p0 );
  540. }
  541. public static string ELinq_UnresolvableFunctionForExpression (object p0)
  542. {
  543. return SR.GetString (SR.ELinq_UnresolvableFunctionForExpression, p0 );
  544. }
  545. public static string ELinq_UnresolvableFunctionForMember (object p0, object p1)
  546. {
  547. return SR.GetString (SR.ELinq_UnresolvableFunctionForMember, p0, p1 );
  548. }
  549. public static string ELinq_UnresolvableFunctionForMethod (object p0, object p1)
  550. {
  551. return SR.GetString (SR.ELinq_UnresolvableFunctionForMethod, p0, p1 );
  552. }
  553. public static string ELinq_UnresolvableFunctionForMethodAmbiguousMatch (object p0, object p1)
  554. {
  555. return SR.GetString (SR.ELinq_UnresolvableFunctionForMethodAmbiguousMatch, p0, p1 );
  556. }
  557. public static string ELinq_UnresolvableFunctionForMethodNotFound (object p0, object p1)
  558. {
  559. return SR.GetString (SR.ELinq_UnresolvableFunctionForMethodNotFound, p0, p1 );
  560. }
  561. public static string ELinq_UnresolvableStoreFunctionForExpression (object p0)
  562. {
  563. return SR.GetString (SR.ELinq_UnresolvableStoreFunctionForExpression, p0 );
  564. }
  565. public static string ELinq_UnresolvableStoreFunctionForMember (object p0, object p1)
  566. {
  567. return SR.GetString (SR.ELinq_UnresolvableStoreFunctionForMember, p0, p1 );
  568. }
  569. public static string ELinq_UnsupportedAsUnicodeAndAsNonUnicode (object p0)
  570. {
  571. return SR.GetString (SR.ELinq_UnsupportedAsUnicodeAndAsNonUnicode, p0 );
  572. }
  573. public static string ELinq_UnsupportedCast (object p0, object p1)
  574. {
  575. return SR.GetString (SR.ELinq_UnsupportedCast, p0, p1 );
  576. }
  577. public static string ELinq_UnsupportedComparison (object p0)
  578. {
  579. return SR.GetString (SR.ELinq_UnsupportedComparison, p0 );
  580. }
  581. public static string ELinq_UnsupportedConstant (object p0)
  582. {
  583. return SR.GetString (SR.ELinq_UnsupportedConstant, p0 );
  584. }
  585. public static string ELinq_UnsupportedEnumerableType (object p0)
  586. {
  587. return SR.GetString (SR.ELinq_UnsupportedEnumerableType, p0 );
  588. }
  589. public static string ELinq_UnsupportedExpressionType (object p0)
  590. {
  591. return SR.GetString (SR.ELinq_UnsupportedExpressionType, p0 );
  592. }
  593. public static string ELinq_UnsupportedHeterogeneousInitializers (object p0)
  594. {
  595. return SR.GetString (SR.ELinq_UnsupportedHeterogeneousInitializers, p0 );
  596. }
  597. public static string ELinq_UnsupportedIsOrAs (object p0, object p1, object p2)
  598. {
  599. return SR.GetString (SR.ELinq_UnsupportedIsOrAs, p0, p1, p2 );
  600. }
  601. public static string ELinq_UnsupportedKeySelector (object p0)
  602. {
  603. return SR.GetString (SR.ELinq_UnsupportedKeySelector, p0 );
  604. }
  605. public static string ELinq_UnsupportedMethod (object p0)
  606. {
  607. return SR.GetString (SR.ELinq_UnsupportedMethod, p0 );
  608. }
  609. public static string ELinq_UnsupportedMethodSuggestedAlternative (object p0, object p1)
  610. {
  611. return SR.GetString (SR.ELinq_UnsupportedMethodSuggestedAlternative, p0, p1 );
  612. }
  613. public static string ELinq_UnsupportedNominalType (object p0)
  614. {
  615. return SR.GetString (SR.ELinq_UnsupportedNominalType, p0 );
  616. }
  617. public static string ELinq_UnsupportedNullConstant (object p0)
  618. {
  619. return SR.GetString (SR.ELinq_UnsupportedNullConstant, p0 );
  620. }
  621. public static string ELinq_UnsupportedPassthrough (object p0, object p1)
  622. {
  623. return SR.GetString (SR.ELinq_UnsupportedPassthrough, p0, p1 );
  624. }
  625. public static string ELinq_UnsupportedRefComparison (object p0, object p1)
  626. {
  627. return SR.GetString (SR.ELinq_UnsupportedRefComparison, p0, p1 );
  628. }
  629. public static string ELinq_UnsupportedRowComparison (object p0)
  630. {
  631. return SR.GetString (SR.ELinq_UnsupportedRowComparison, p0 );
  632. }
  633. public static string ELinq_UnsupportedRowMemberComparison (object p0)
  634. {
  635. return SR.GetString (SR.ELinq_UnsupportedRowMemberComparison, p0 );
  636. }
  637. public static string ELinq_UnsupportedRowTypeComparison (object p0)
  638. {
  639. return SR.GetString (SR.ELinq_UnsupportedRowTypeComparison, p0 );
  640. }
  641. public static string ELinq_UnsupportedStringRemoveCase (object p0, object p1)
  642. {
  643. return SR.GetString (SR.ELinq_UnsupportedStringRemoveCase, p0, p1 );
  644. }
  645. public static string ELinq_UnsupportedTrimStartTrimEndCase (object p0)
  646. {
  647. return SR.GetString (SR.ELinq_UnsupportedTrimStartTrimEndCase, p0 );
  648. }
  649. public static string ELinq_UnsupportedType (object p0)
  650. {
  651. return SR.GetString (SR.ELinq_UnsupportedType, p0 );
  652. }
  653. public static string ELinq_UnsupportedUseOfContextParameter (object p0)
  654. {
  655. return SR.GetString (SR.ELinq_UnsupportedUseOfContextParameter, p0 );
  656. }
  657. public static string ELinq_UnsupportedVBDatePartInvalidInterval (object p0, object p1, object p2)
  658. {
  659. return SR.GetString (SR.ELinq_UnsupportedVBDatePartInvalidInterval, p0, p1, p2 );
  660. }
  661. public static string ELinq_UnsupportedVBDatePartNonConstantInterval (object p0, object p1)
  662. {
  663. return SR.GetString (SR.ELinq_UnsupportedVBDatePartNonConstantInterval, p0, p1 );
  664. }
  665. public static string EmptyFile (object p0)
  666. {
  667. return SR.GetString (SR.EmptyFile, p0 );
  668. }
  669. public static string EmptyName (object p0)
  670. {
  671. return SR.GetString (SR.EmptyName, p0 );
  672. }
  673. public static string EndNameAlreadyDefinedDuplicate (object p0)
  674. {
  675. return SR.GetString (SR.EndNameAlreadyDefinedDuplicate, p0 );
  676. }
  677. public static string EndWithManyMultiplicityCannotHaveOperationsSpecified (object p0, object p1)
  678. {
  679. return SR.GetString (SR.EndWithManyMultiplicityCannotHaveOperationsSpecified, p0, p1 );
  680. }
  681. public static string EndWithoutMultiplicity (object p0, object p1)
  682. {
  683. return SR.GetString (SR.EndWithoutMultiplicity, p0, p1 );
  684. }
  685. public static string EntityClient_ConnectionStringMissingInfo (object p0)
  686. {
  687. return SR.GetString (SR.EntityClient_ConnectionStringMissingInfo, p0 );
  688. }
  689. public static string EntityClient_DbConnectionHasNoProvider (object p0)
  690. {
  691. return SR.GetString (SR.EntityClient_DbConnectionHasNoProvider, p0 );
  692. }
  693. public static string EntityClient_DoesNotImplementIServiceProvider (object p0)
  694. {
  695. return SR.GetString (SR.EntityClient_DoesNotImplementIServiceProvider, p0 );
  696. }
  697. public static string EntityClient_DuplicateParameterNames (object p0)
  698. {
  699. return SR.GetString (SR.EntityClient_DuplicateParameterNames, p0 );
  700. }
  701. public static string EntityClient_EntityParameterEdmTypeNotScalar (object p0)
  702. {
  703. return SR.GetString (SR.EntityClient_EntityParameterEdmTypeNotScalar, p0 );
  704. }
  705. public static string EntityClient_EntityParameterInconsistentEdmType (object p0, object p1)
  706. {
  707. return SR.GetString (SR.EntityClient_EntityParameterInconsistentEdmType, p0, p1 );
  708. }
  709. public static string EntityClient_ExecutingOnClosedConnection (object p0)
  710. {
  711. return SR.GetString (SR.EntityClient_ExecutingOnClosedConnection, p0 );
  712. }
  713. public static string EntityClient_FailedToGetInformation (object p0)
  714. {
  715. return SR.GetString (SR.EntityClient_FailedToGetInformation, p0 );
  716. }
  717. public static string EntityClient_FunctionImportMustBeNonComposable (object p0)
  718. {
  719. return SR.GetString (SR.EntityClient_FunctionImportMustBeNonComposable, p0 );
  720. }
  721. public static string EntityClient_IncompatibleNavigationPropertyResult (object p0, object p1)
  722. {
  723. return SR.GetString (SR.EntityClient_IncompatibleNavigationPropertyResult, p0, p1 );
  724. }
  725. public static string EntityClient_InvalidParameterDirection (object p0)
  726. {
  727. return SR.GetString (SR.EntityClient_InvalidParameterDirection, p0 );
  728. }
  729. public static string EntityClient_InvalidParameterName (object p0)
  730. {
  731. return SR.GetString (SR.EntityClient_InvalidParameterName, p0 );
  732. }
  733. public static string EntityClient_ItemCollectionsNotRegisteredInWorkspace (object p0)
  734. {
  735. return SR.GetString (SR.EntityClient_ItemCollectionsNotRegisteredInWorkspace, p0 );
  736. }
  737. public static string EntityClient_KeywordNotSupported (object p0)
  738. {
  739. return SR.GetString (SR.EntityClient_KeywordNotSupported, p0 );
  740. }
  741. public static string EntityClient_NestedNamedConnection (object p0)
  742. {
  743. return SR.GetString (SR.EntityClient_NestedNamedConnection, p0 );
  744. }
  745. public static string EntityClient_ProviderSpecificError (object p0)
  746. {
  747. return SR.GetString (SR.EntityClient_ProviderSpecificError, p0 );
  748. }
  749. public static string EntityClient_ReturnedNullOnProviderMethod (object p0, object p1)
  750. {
  751. return SR.GetString (SR.EntityClient_ReturnedNullOnProviderMethod, p0, p1 );
  752. }
  753. public static string EntityClient_UnableToFindFunctionImport (object p0, object p1)
  754. {
  755. return SR.GetString (SR.EntityClient_UnableToFindFunctionImport, p0, p1 );
  756. }
  757. public static string EntityClient_UnableToFindFunctionImportContainer (object p0)
  758. {
  759. return SR.GetString (SR.EntityClient_UnableToFindFunctionImportContainer, p0 );
  760. }
  761. public static string EntityClient_UnknownParameterType (object p0)
  762. {
  763. return SR.GetString (SR.EntityClient_UnknownParameterType, p0 );
  764. }
  765. public static string EntityClient_UnmappedFunctionImport (object p0)
  766. {
  767. return SR.GetString (SR.EntityClient_UnmappedFunctionImport, p0 );
  768. }
  769. public static string EntityClient_UnsupportedDbType (object p0, object p1)
  770. {
  771. return SR.GetString (SR.EntityClient_UnsupportedDbType, p0, p1 );
  772. }
  773. public static string EntityContainerAlreadyExists (object p0)
  774. {
  775. return SR.GetString (SR.EntityContainerAlreadyExists, p0 );
  776. }
  777. public static string EntityContainerCannotExtendItself (object p0)
  778. {
  779. return SR.GetString (SR.EntityContainerCannotExtendItself, p0 );
  780. }
  781. public static string EntityKey_DoesntMatchKeyOnEntity (object p0)
  782. {
  783. return SR.GetString (SR.EntityKey_DoesntMatchKeyOnEntity, p0 );
  784. }
  785. public static string EntityKey_EntitySetDoesNotMatch (object p0)
  786. {
  787. return SR.GetString (SR.EntityKey_EntitySetDoesNotMatch, p0 );
  788. }
  789. public static string EntityKey_EntityTypesDoNotMatch (object p0, object p1)
  790. {
  791. return SR.GetString (SR.EntityKey_EntityTypesDoNotMatch, p0, p1 );
  792. }
  793. public static string EntityKey_IncorrectNumberOfKeyValuePairs (object p0, object p1, object p2)
  794. {
  795. return SR.GetString (SR.EntityKey_IncorrectNumberOfKeyValuePairs, p0, p1, p2 );
  796. }
  797. public static string EntityKey_IncorrectValueType (object p0, object p1, object p2)
  798. {
  799. return SR.GetString (SR.EntityKey_IncorrectValueType, p0, p1, p2 );
  800. }
  801. public static string EntityKey_InvalidName (object p0)
  802. {
  803. return SR.GetString (SR.EntityKey_InvalidName, p0 );
  804. }
  805. public static string EntityKey_MissingKeyValue (object p0, object p1)
  806. {
  807. return SR.GetString (SR.EntityKey_MissingKeyValue, p0, p1 );
  808. }
  809. public static string EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember (object p0, object p1)
  810. {
  811. return SR.GetString (SR.EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember, p0, p1 );
  812. }
  813. public static string EntityKey_NullKeyValue (object p0, object p1)
  814. {
  815. return SR.GetString (SR.EntityKey_NullKeyValue, p0, p1 );
  816. }
  817. public static string EntityKeyMustBeScalar (object p0, object p1)
  818. {
  819. return SR.GetString (SR.EntityKeyMustBeScalar, p0, p1 );
  820. }
  821. public static string EntityKeyTypeCurrentlyNotSupported (object p0, object p1, object p2)
  822. {
  823. return SR.GetString (SR.EntityKeyTypeCurrentlyNotSupported, p0, p1, p2 );
  824. }
  825. public static string EntityKeyTypeCurrentlyNotSupportedInSSDL (object p0, object p1, object p2, object p3, object p4)
  826. {
  827. return SR.GetString (SR.EntityKeyTypeCurrentlyNotSupportedInSSDL, p0, p1, p2, p3, p4 );
  828. }
  829. public static string EntityParameterCollectionInvalidIndex (object p0, object p1)
  830. {
  831. return SR.GetString (SR.EntityParameterCollectionInvalidIndex, p0, p1 );
  832. }
  833. public static string EntityParameterCollectionInvalidParameterName (object p0)
  834. {
  835. return SR.GetString (SR.EntityParameterCollectionInvalidParameterName, p0 );
  836. }
  837. public static string EntityProxyTypeInfo_CannotSetEntityCollectionProperty (object p0, object p1)
  838. {
  839. return SR.GetString (SR.EntityProxyTypeInfo_CannotSetEntityCollectionProperty, p0, p1 );
  840. }
  841. public static string EntityProxyTypeInfo_DuplicateOSpaceType (object p0)
  842. {
  843. return SR.GetString (SR.EntityProxyTypeInfo_DuplicateOSpaceType, p0 );
  844. }
  845. public static string EntityProxyTypeInfo_ProxyMetadataIsUnavailable (object p0)
  846. {
  847. return SR.GetString (SR.EntityProxyTypeInfo_ProxyMetadataIsUnavailable, p0 );
  848. }
  849. public static string EntityReference_CannotAddMoreThanOneEntityToEntityReference (object p0, object p1)
  850. {
  851. return SR.GetString (SR.EntityReference_CannotAddMoreThanOneEntityToEntityReference, p0, p1 );
  852. }
  853. public static string EntityReference_ExpectedReferenceGotCollection (object p0, object p1, object p2)
  854. {
  855. return SR.GetString (SR.EntityReference_ExpectedReferenceGotCollection, p0, p1, p2 );
  856. }
  857. public static string EntitySetNotInCSPace (object p0)
  858. {
  859. return SR.GetString (SR.EntitySetNotInCSPace, p0 );
  860. }
  861. public static string EntitySetTypeHasNoKeys (object p0, object p1)
  862. {
  863. return SR.GetString (SR.EntitySetTypeHasNoKeys, p0, p1 );
  864. }
  865. public static string EnumMemberValueOutOfItsUnderylingTypeRange (object p0, object p1, object p2)
  866. {
  867. return SR.GetString (SR.EnumMemberValueOutOfItsUnderylingTypeRange, p0, p1, p2 );
  868. }
  869. public static string ExpressionTypeMustBeEntityType (object p0, object p1, object p2)
  870. {
  871. return SR.GetString (SR.ExpressionTypeMustBeEntityType, p0, p1, p2 );
  872. }
  873. public static string ExpressionTypeMustBeNominalType (object p0, object p1, object p2)
  874. {
  875. return SR.GetString (SR.ExpressionTypeMustBeNominalType, p0, p1, p2 );
  876. }
  877. public static string FacetNotAllowed (object p0, object p1)
  878. {
  879. return SR.GetString (SR.FacetNotAllowed, p0, p1 );
  880. }
  881. public static string FacetsOnNonScalarType (object p0)
  882. {
  883. return SR.GetString (SR.FacetsOnNonScalarType, p0 );
  884. }
  885. public static string FailedToFindClrTypeMapping (object p0)
  886. {
  887. return SR.GetString (SR.FailedToFindClrTypeMapping, p0 );
  888. }
  889. public static string FailedToFindCSpaceTypeMapping (object p0)
  890. {
  891. return SR.GetString (SR.FailedToFindCSpaceTypeMapping, p0 );
  892. }
  893. public static string FailedToFindOSpaceTypeMapping (object p0)
  894. {
  895. return SR.GetString (SR.FailedToFindOSpaceTypeMapping, p0 );
  896. }
  897. public static string FailedToResolveAggregateFunction (object p0)
  898. {
  899. return SR.GetString (SR.FailedToResolveAggregateFunction, p0 );
  900. }
  901. public static string FunctionImportCollectionAndRefParametersNotAllowed (object p0)
  902. {
  903. return SR.GetString (SR.FunctionImportCollectionAndRefParametersNotAllowed, p0 );
  904. }
  905. public static string FunctionImportComposableAndSideEffectingNotAllowed (object p0)
  906. {
  907. return SR.GetString (SR.FunctionImportComposableAndSideEffectingNotAllowed, p0 );
  908. }
  909. public static string FunctionImportEntitySetAndEntitySetPathDeclared (object p0)
  910. {
  911. return SR.GetString (SR.FunctionImportEntitySetAndEntitySetPathDeclared, p0 );
  912. }
  913. public static string FunctionImportEntityTypeDoesNotMatchEntitySet (object p0, object p1, object p2)
  914. {
  915. return SR.GetString (SR.FunctionImportEntityTypeDoesNotMatchEntitySet, p0, p1, p2 );
  916. }
  917. public static string FunctionImportNonNullableParametersNotAllowed (object p0)
  918. {
  919. return SR.GetString (SR.FunctionImportNonNullableParametersNotAllowed, p0 );
  920. }
  921. public static string FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet (object p0)
  922. {
  923. return SR.GetString (SR.FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet, p0 );
  924. }
  925. public static string FunctionImportSpecifiesEntitySetButNotEntityType (object p0)
  926. {
  927. return SR.GetString (SR.FunctionImportSpecifiesEntitySetButNotEntityType, p0 );
  928. }
  929. public static string FunctionImportUnknownEntitySet (object p0, object p1)
  930. {
  931. return SR.GetString (SR.FunctionImportUnknownEntitySet, p0, p1 );
  932. }
  933. public static string FunctionImportWithUnsupportedReturnTypeV1 (object p0)
  934. {
  935. return SR.GetString (SR.FunctionImportWithUnsupportedReturnTypeV1, p0 );
  936. }
  937. public static string FunctionImportWithUnsupportedReturnTypeV1_1 (object p0)
  938. {
  939. return SR.GetString (SR.FunctionImportWithUnsupportedReturnTypeV1_1, p0 );
  940. }
  941. public static string FunctionImportWithUnsupportedReturnTypeV2 (object p0)
  942. {
  943. return SR.GetString (SR.FunctionImportWithUnsupportedReturnTypeV2, p0 );
  944. }
  945. public static string FunctionWithNonEdmPrimitiveTypeNotSupported (object p0, object p1)
  946. {
  947. return SR.GetString (SR.FunctionWithNonEdmPrimitiveTypeNotSupported, p0, p1 );
  948. }
  949. public static string FunctionWithNonPrimitiveTypeNotSupported (object p0, object p1)
  950. {
  951. return SR.GetString (SR.FunctionWithNonPrimitiveTypeNotSupported, p0, p1 );
  952. }
  953. public static string GeneralExceptionAsQueryInnerException (object p0)
  954. {
  955. return SR.GetString (SR.GeneralExceptionAsQueryInnerException, p0 );
  956. }
  957. public static string Generated_View_Type_Super_Class (object p0)
  958. {
  959. return SR.GetString (SR.Generated_View_Type_Super_Class, p0 );
  960. }
  961. public static string Generated_Views_Invalid_Extent (object p0)
  962. {
  963. return SR.GetString (SR.Generated_Views_Invalid_Extent, p0 );
  964. }
  965. public static string GenericTypeNotSupported (object p0)
  966. {
  967. return SR.GetString (SR.GenericTypeNotSupported, p0 );
  968. }
  969. public static string InferRelationshipEndAmbiguous (object p0, object p1, object p2, object p3, object p4)
  970. {
  971. return SR.GetString (SR.InferRelationshipEndAmbiguous, p0, p1, p2, p3, p4 );
  972. }
  973. public static string InferRelationshipEndFailedNoEntitySetMatch (object p0, object p1, object p2, object p3, object p4)
  974. {
  975. return SR.GetString (SR.InferRelationshipEndFailedNoEntitySetMatch, p0, p1, p2, p3, p4 );
  976. }
  977. public static string InferRelationshipEndGivesAlreadyDefinedEnd (object p0, object p1)
  978. {
  979. return SR.GetString (SR.InferRelationshipEndGivesAlreadyDefinedEnd, p0, p1 );
  980. }
  981. public static string InvalidAction (object p0, object p1)
  982. {
  983. return SR.GetString (SR.InvalidAction, p0, p1 );
  984. }
  985. public static string InvalidAliasName (object p0)
  986. {
  987. return SR.GetString (SR.InvalidAliasName, p0 );
  988. }
  989. public static string InvalidAssociationTypeForUnion (object p0)
  990. {
  991. return SR.GetString (SR.InvalidAssociationTypeForUnion, p0 );
  992. }
  993. public static string InvalidBaseTypeForItemType (object p0, object p1)
  994. {
  995. return SR.GetString (SR.InvalidBaseTypeForItemType, p0, p1 );
  996. }
  997. public static string InvalidBaseTypeForNestedType (object p0, object p1)
  998. {
  999. return SR.GetString (SR.InvalidBaseTypeForNestedType, p0, p1 );
  1000. }
  1001. public static string InvalidBaseTypeForStructuredType (object p0, object p1)
  1002. {
  1003. return SR.GetString (SR.InvalidBaseTypeForStructuredType, p0, p1 );
  1004. }
  1005. public static string InvalidCast (object p0, object p1)
  1006. {
  1007. return SR.GetString (SR.InvalidCast, p0, p1 );
  1008. }
  1009. public static string InvalidCollectionForMapping (object p0)
  1010. {
  1011. return SR.GetString (SR.InvalidCollectionForMapping, p0 );
  1012. }
  1013. public static string InvalidCollectionSpecified (object p0)
  1014. {
  1015. return SR.GetString (SR.InvalidCollectionSpecified, p0 );
  1016. }
  1017. public static string InvalidComplexType (object p0, object p1, object p2, object p3)
  1018. {
  1019. return SR.GetString (SR.InvalidComplexType, p0, p1, p2, p3 );
  1020. }
  1021. public static string InvalidCtorArgumentType (object p0, object p1, object p2)
  1022. {
  1023. return SR.GetString (SR.InvalidCtorArgumentType, p0, p1, p2 );
  1024. }
  1025. public static string InvalidCtorUseOnType (object p0)
  1026. {
  1027. return SR.GetString (SR.InvalidCtorUseOnType, p0 );
  1028. }
  1029. public static string InvalidDateTimeOffsetLiteral (object p0)
  1030. {
  1031. return SR.GetString (SR.InvalidDateTimeOffsetLiteral, p0 );
  1032. }
  1033. public static string InvalidDay (object p0, object p1)
  1034. {
  1035. return SR.GetString (SR.InvalidDay, p0, p1 );
  1036. }
  1037. public static string InvalidDayInMonth (object p0, object p1, object p2)
  1038. {
  1039. return SR.GetString (SR.InvalidDayInMonth, p0, p1, p2 );
  1040. }
  1041. public static string InvalidDefaultBinaryWithNoMaxLength (object p0)
  1042. {
  1043. return SR.GetString (SR.InvalidDefaultBinaryWithNoMaxLength, p0 );
  1044. }
  1045. public static string InvalidDefaultBoolean (object p0)
  1046. {
  1047. return SR.GetString (SR.InvalidDefaultBoolean, p0 );
  1048. }
  1049. public static string InvalidDefaultDateTime (object p0, object p1)
  1050. {
  1051. return SR.GetString (SR.InvalidDefaultDateTime, p0, p1 );
  1052. }
  1053. public static string InvalidDefaultDateTimeOffset (object p0, object p1)
  1054. {
  1055. return SR.GetString (SR.InvalidDefaultDateTimeOffset, p0, p1 );
  1056. }
  1057. public static string InvalidDefaultDecimal (object p0, object p1, object p2)
  1058. {
  1059. return SR.GetString (SR.InvalidDefaultDecimal, p0, p1, p2 );
  1060. }
  1061. public static string InvalidDefaultFloatingPoint (object p0, object p1, object p2)
  1062. {
  1063. return SR.GetString (SR.InvalidDefaultFloatingPoint, p0, p1, p2 );
  1064. }
  1065. public static string InvalidDefaultGuid (object p0)
  1066. {
  1067. return SR.GetString (SR.InvalidDefaultGuid, p0 );
  1068. }
  1069. public static string InvalidDefaultIntegral (object p0, object p1, object p2)
  1070. {
  1071. return SR.GetString (SR.InvalidDefaultIntegral, p0, p1, p2 );
  1072. }
  1073. public static string InvalidDefaultTime (object p0, object p1)
  1074. {
  1075. return SR.GetString (SR.InvalidDefaultTime, p0, p1 );
  1076. }
  1077. public static string InvalidDeRefProperty (object p0, object p1, object p2)
  1078. {
  1079. return SR.GetString (SR.InvalidDeRefProperty, p0, p1, p2 );
  1080. }
  1081. public static string InvalidEDMVersion (object p0)
  1082. {
  1083. return SR.GetString (SR.InvalidEDMVersion, p0 );
  1084. }
  1085. public static string InvalidEndEntitySetTypeMismatch (object p0)
  1086. {
  1087. return SR.GetString (SR.InvalidEndEntitySetTypeMismatch, p0 );
  1088. }
  1089. public static string InvalidEndRoleInRelationshipConstraint (object p0, object p1)
  1090. {
  1091. return SR.GetString (SR.InvalidEndRoleInRelationshipConstraint, p0, p1 );
  1092. }
  1093. public static string InvalidEntityContainerNameInExtends (object p0)
  1094. {
  1095. return SR.GetString (SR.InvalidEntityContainerNameInExtends, p0 );
  1096. }
  1097. public static string InvalidEntityEndName (object p0, object p1)
  1098. {
  1099. return SR.GetString (SR.InvalidEntityEndName, p0, p1 );
  1100. }
  1101. public static string InvalidEntityParameterType (object p0)
  1102. {
  1103. return SR.GetString (SR.InvalidEntityParameterType, p0 );
  1104. }
  1105. public static string InvalidEntityRootTypeArgument (object p0, object p1)
  1106. {
  1107. return SR.GetString (SR.InvalidEntityRootTypeArgument, p0, p1 );
  1108. }
  1109. public static string InvalidEntitySetName (object p0)
  1110. {
  1111. return SR.GetString (SR.InvalidEntitySetName, p0 );
  1112. }
  1113. public static string InvalidEntitySetNameReference (object p0, object p1)
  1114. {
  1115. return SR.GetString (SR.InvalidEntitySetNameReference, p0, p1 );
  1116. }
  1117. public static string InvalidEntitySetType (object p0)
  1118. {
  1119. return SR.GetString (SR.InvalidEntitySetType, p0 );
  1120. }
  1121. public static string InvalidEntityTypeArgument (object p0, object p1, object p2, object p3)
  1122. {
  1123. return SR.GetString (SR.InvalidEntityTypeArgument, p0, p1, p2, p3 );
  1124. }
  1125. public static string InvalidEscapedIdentifier (object p0)
  1126. {
  1127. return SR.GetString (SR.InvalidEscapedIdentifier, p0 );
  1128. }
  1129. public static string InvalidEscapedIdentifierUnbalanced (object p0)
  1130. {
  1131. return SR.GetString (SR.InvalidEscapedIdentifierUnbalanced, p0 );
  1132. }
  1133. public static string InvalidExpressionResolutionClass (object p0, object p1)
  1134. {
  1135. return SR.GetString (SR.InvalidExpressionResolutionClass, p0, p1 );
  1136. }
  1137. public static string InvalidFileExtension (object p0, object p1, object p2)
  1138. {
  1139. return SR.GetString (SR.InvalidFileExtension, p0, p1, p2 );
  1140. }
  1141. public static string InvalidFromPropertyInRelationshipConstraint (object p0, object p1, object p2)
  1142. {
  1143. return SR.GetString (SR.InvalidFromPropertyInRelationshipConstraint, p0, p1, p2 );
  1144. }
  1145. public static string InvalidGroupIdentifierReference (object p0)
  1146. {
  1147. return SR.GetString (SR.InvalidGroupIdentifierReference, p0 );
  1148. }
  1149. public static string InvalidHour (object p0, object p1)
  1150. {
  1151. return SR.GetString (SR.InvalidHour, p0, p1 );
  1152. }
  1153. public static string InvalidImplicitRelationshipFromEnd (object p0)
  1154. {
  1155. return SR.GetString (SR.InvalidImplicitRelationshipFromEnd, p0 );
  1156. }
  1157. public static string InvalidImplicitRelationshipToEnd (object p0)
  1158. {
  1159. return SR.GetString (SR.InvalidImplicitRelationshipToEnd, p0 );
  1160. }
  1161. public static string InvalidInExprArgs (object p0, object p1)
  1162. {
  1163. return SR.GetString (SR.InvalidInExprArgs, p0, p1 );
  1164. }
  1165. public static string InvalidKeyArgument (object p0)
  1166. {
  1167. return SR.GetString (SR.InvalidKeyArgument, p0 );
  1168. }
  1169. public static string InvalidKeyKeyDefinedInBaseClass (object p0, object p1)
  1170. {
  1171. return SR.GetString (SR.InvalidKeyKeyDefinedInBaseClass, p0, p1 );
  1172. }
  1173. public static string InvalidKeyMember (object p0)
  1174. {
  1175. return SR.GetString (SR.InvalidKeyMember, p0 );
  1176. }
  1177. public static string InvalidKeyNoProperty (object p0, object p1)
  1178. {
  1179. return SR.GetString (SR.InvalidKeyNoProperty, p0, p1 );
  1180. }
  1181. public static string InvalidKeyNullablePart (object p0, object p1)
  1182. {
  1183. return SR.GetString (SR.InvalidKeyNullablePart, p0, p1 );
  1184. }
  1185. public static string InvalidKeyTypeForCollation (object p0)
  1186. {
  1187. return SR.GetString (SR.InvalidKeyTypeForCollation, p0 );
  1188. }
  1189. public static string InvalidLiteralFormat (object p0, object p1)
  1190. {
  1191. return SR.GetString (SR.InvalidLiteralFormat, p0, p1 );
  1192. }
  1193. public static string InvalidMemberNameMatchesTypeName (object p0, object p1)
  1194. {
  1195. return SR.GetString (SR.InvalidMemberNameMatchesTypeName, p0, p1 );
  1196. }
  1197. public static string InvalidMetadataMemberClassResolution (object p0, object p1, object p2)
  1198. {
  1199. return SR.GetString (SR.InvalidMetadataMemberClassResolution, p0, p1, p2 );
  1200. }
  1201. public static string InvalidMinute (object p0, object p1)
  1202. {
  1203. return SR.GetString (SR.InvalidMinute, p0, p1 );
  1204. }
  1205. public static string InvalidMonth (object p0, object p1)
  1206. {
  1207. return SR.GetString (SR.InvalidMonth, p0, p1 );
  1208. }
  1209. public static string InvalidMultiplicityFromRoleToPropertyNonNullableV1 (object p0, object p1)
  1210. {
  1211. return SR.GetString (SR.InvalidMultiplicityFromRoleToPropertyNonNullableV1, p0, p1 );
  1212. }
  1213. public static string InvalidMultiplicityFromRoleToPropertyNonNullableV2 (object p0, object p1)
  1214. {
  1215. return SR.GetString (SR.InvalidMultiplicityFromRoleToPropertyNonNullableV2, p0, p1 );
  1216. }
  1217. public static string InvalidMultiplicityFromRoleToPropertyNullableV1 (object p0, object p1)
  1218. {
  1219. return SR.GetString (SR.InvalidMultiplicityFromRoleToPropertyNullableV1, p0, p1 );
  1220. }
  1221. public static string InvalidMultiplicityFromRoleUpperBoundMustBeOne (object p0, object p1)
  1222. {
  1223. return SR.GetString (SR.InvalidMultiplicityFromRoleUpperBoundMustBeOne, p0, p1 );
  1224. }
  1225. public static string InvalidMultiplicityToRoleLowerBoundMustBeZero (object p0, object p1)
  1226. {
  1227. return SR.GetString (SR.InvalidMultiplicityToRoleLowerBoundMustBeZero, p0, p1 );
  1228. }
  1229. public static string InvalidMultiplicityToRoleUpperBoundMustBeMany (object p0, object p1)
  1230. {
  1231. return SR.GetString (SR.InvalidMultiplicityToRoleUpperBoundMustBeMany, p0, p1 );
  1232. }
  1233. public static string InvalidMultiplicityToRoleUpperBoundMustBeOne (object p0, object p1)
  1234. {
  1235. return SR.GetString (SR.InvalidMultiplicityToRoleUpperBoundMustBeOne, p0, p1 );
  1236. }
  1237. public static string InvalidName (object p0, object p1)
  1238. {
  1239. return SR.GetString (SR.InvalidName, p0, p1 );
  1240. }
  1241. public static string InvalidNamespaceInUsing (object p0)
  1242. {
  1243. return SR.GetString (SR.InvalidNamespaceInUsing, p0 );
  1244. }
  1245. public static string InvalidNamespaceOrAliasSpecified (object p0)
  1246. {
  1247. return SR.GetString (SR.InvalidNamespaceOrAliasSpecified, p0 );
  1248. }
  1249. public static string InvalidNullLiteralForNonNullableMember (object p0, object p1)
  1250. {
  1251. return SR.GetString (SR.InvalidNullLiteralForNonNullableMember, p0, p1 );
  1252. }
  1253. public static string InvalidNumberOfParametersForAggregateFunction (object p0)
  1254. {
  1255. return SR.GetString (SR.InvalidNumberOfParametersForAggregateFunction, p0 );
  1256. }
  1257. public static string InvalidParameterFormat (object p0)
  1258. {
  1259. return SR.GetString (SR.InvalidParameterFormat, p0 );
  1260. }
  1261. public static string InvalidParameterTypeForAggregateFunction (object p0, object p1)
  1262. {
  1263. return SR.GetString (SR.InvalidParameterTypeForAggregateFunction, p0, p1 );
  1264. }
  1265. public static string InvalidPlaceholderRootTypeArgument (object p0, object p1, object p2, object p3)
  1266. {
  1267. return SR.GetString (SR.InvalidPlaceholderRootTypeArgument, p0, p1, p2, p3 );
  1268. }
  1269. public static string InvalidPlaceholderTypeArgument (object p0, object p1, object p2, object p3, object p4, object p5)
  1270. {
  1271. return SR.GetString (SR.InvalidPlaceholderTypeArgument, p0, p1, p2, p3, p4, p5 );
  1272. }
  1273. public static string InvalidPrimitiveTypeKind (object p0)
  1274. {
  1275. return SR.GetString (SR.InvalidPrimitiveTypeKind, p0 );
  1276. }
  1277. public static string InvalidPropertyInRelationshipConstraint (object p0, object p1)
  1278. {
  1279. return SR.GetString (SR.InvalidPropertyInRelationshipConstraint, p0, p1 );
  1280. }
  1281. public static string InvalidPropertyType (object p0)
  1282. {
  1283. return SR.GetString (SR.InvalidPropertyType, p0 );
  1284. }
  1285. public static string InvalidQueryResultType (object p0)
  1286. {
  1287. return SR.GetString (SR.InvalidQueryResultType, p0 );
  1288. }
  1289. public static string InvalidRelationshipEndMultiplicity (object p0, object p1)
  1290. {
  1291. return SR.GetString (SR.InvalidRelationshipEndMultiplicity, p0, p1 );
  1292. }
  1293. public static string InvalidRelationshipEndType (object p0, object p1)
  1294. {
  1295. return SR.GetString (SR.InvalidRelationshipEndType, p0, p1 );
  1296. }
  1297. public static string InvalidRelationshipMember (object p0, object p1)
  1298. {
  1299. return SR.GetString (SR.InvalidRelationshipMember, p0, p1 );
  1300. }
  1301. public static string InvalidRelationshipSetName (object p0)
  1302. {
  1303. return SR.GetString (SR.InvalidRelationshipSetName, p0 );
  1304. }
  1305. public static string InvalidRelationshipSetType (object p0)
  1306. {
  1307. return SR.GetString (SR.InvalidRelationshipSetType, p0 );
  1308. }
  1309. public static string InvalidRootComplexType (object p0, object p1)
  1310. {
  1311. return SR.GetString (SR.InvalidRootComplexType, p0, p1 );
  1312. }
  1313. public static string InvalidRootRowType (object p0, object p1)
  1314. {
  1315. return SR.GetString (SR.InvalidRootRowType, p0, p1 );
  1316. }
  1317. public static string InvalidRowType (object p0, object p1, object p2, object p3)
  1318. {
  1319. return SR.GetString (SR.InvalidRowType, p0, p1, p2, p3 );
  1320. }
  1321. public static string InvalidSchemaEncountered (object p0)
  1322. {
  1323. return SR.GetString (SR.InvalidSchemaEncountered, p0 );
  1324. }
  1325. public static string InvalidSecond (object p0, object p1)
  1326. {
  1327. return SR.GetString (SR.InvalidSecond, p0, p1 );
  1328. }
  1329. public static string InvalidSimpleIdentifier (object p0)
  1330. {
  1331. return SR.GetString (SR.InvalidSimpleIdentifier, p0 );
  1332. }
  1333. public static string InvalidSimpleIdentifierNonASCII (object p0)
  1334. {
  1335. return SR.GetString (SR.InvalidSimpleIdentifierNonASCII, p0 );
  1336. }
  1337. public static string InvalidSize (object p0, object p1, object p2, object p3)
  1338. {
  1339. return SR.GetString (SR.InvalidSize, p0, p1, p2, p3 );
  1340. }
  1341. public static string InvalidStringArgument (object p0)
  1342. {
  1343. return SR.GetString (SR.InvalidStringArgument, p0 );
  1344. }
  1345. public static string InvalidSystemReferenceId (object p0, object p1, object p2, object p3)
  1346. {
  1347. return SR.GetString (SR.InvalidSystemReferenceId, p0, p1, p2, p3 );
  1348. }
  1349. public static string InvalidToPropertyInRelationshipConstraint (object p0, object p1, object p2)
  1350. {
  1351. return SR.GetString (SR.InvalidToPropertyInRelationshipConstraint, p0, p1, p2 );
  1352. }
  1353. public static string InvalidUnarySetOpArgument (object p0)
  1354. {
  1355. return SR.GetString (SR.InvalidUnarySetOpArgument, p0 );
  1356. }
  1357. public static string InvalidUnsignedTypeForUnaryMinusOperation (object p0)
  1358. {
  1359. return SR.GetString (SR.InvalidUnsignedTypeForUnaryMinusOperation, p0 );
  1360. }
  1361. public static string InvalidUseOfWebPath (object p0)
  1362. {
  1363. return SR.GetString (SR.InvalidUseOfWebPath, p0 );
  1364. }
  1365. public static string InvalidValueForParameterTypeSemanticsAttribute (object p0)
  1366. {
  1367. return SR.GetString (SR.InvalidValueForParameterTypeSemanticsAttribute, p0 );
  1368. }
  1369. public static string InvalidWithRelationshipTargetEndMultiplicity (object p0, object p1)
  1370. {
  1371. return SR.GetString (SR.InvalidWithRelationshipTargetEndMultiplicity, p0, p1 );
  1372. }
  1373. public static string InvalidYear (object p0, object p1)
  1374. {
  1375. return SR.GetString (SR.InvalidYear, p0, p1 );
  1376. }
  1377. public static string Iqt_General_UnsupportedOp (object p0)
  1378. {
  1379. return SR.GetString (SR.Iqt_General_UnsupportedOp, p0 );
  1380. }
  1381. public static string ItemCollectionAlreadyRegistered (object p0)
  1382. {
  1383. return SR.GetString (SR.ItemCollectionAlreadyRegistered, p0 );
  1384. }
  1385. public static string ItemDuplicateIdentity (object p0)
  1386. {
  1387. return SR.GetString (SR.ItemDuplicateIdentity, p0 );
  1388. }
  1389. public static string ItemInvalidIdentity (object p0)
  1390. {
  1391. return SR.GetString (SR.ItemInvalidIdentity, p0 );
  1392. }
  1393. public static string KeyMissingOnEntityType (object p0)
  1394. {
  1395. return SR.GetString (SR.KeyMissingOnEntityType, p0 );
  1396. }
  1397. public static string KeyMustBeCorrelated (object p0)
  1398. {
  1399. return SR.GetString (SR.KeyMustBeCorrelated, p0 );
  1400. }
  1401. public static string LiteralTypeNotFoundInMetadata (object p0)
  1402. {
  1403. return SR.GetString (SR.LiteralTypeNotFoundInMetadata, p0 );
  1404. }
  1405. public static string LiteralTypeNotSupported (object p0)
  1406. {
  1407. return SR.GetString (SR.LiteralTypeNotSupported, p0 );
  1408. }
  1409. public static string MalformedXml (object p0, object p1)
  1410. {
  1411. return SR.GetString (SR.MalformedXml, p0, p1 );
  1412. }
  1413. public static string Mapping_AbstractTypeMappingToNonAbstractType (object p0, object p1)
  1414. {
  1415. return SR.GetString (SR.Mapping_AbstractTypeMappingToNonAbstractType, p0, p1 );
  1416. }
  1417. public static string Mapping_AllQueryViewAtCompileTime (object p0)
  1418. {
  1419. return SR.GetString (SR.Mapping_AllQueryViewAtCompileTime, p0 );
  1420. }
  1421. public static string Mapping_AlreadyMapped_StorageEntityContainer (object p0)
  1422. {
  1423. return SR.GetString (SR.Mapping_AlreadyMapped_StorageEntityContainer, p0 );
  1424. }
  1425. public static string Mapping_CannotMapCLRTypeMultipleTimes (object p0)
  1426. {
  1427. return SR.GetString (SR.Mapping_CannotMapCLRTypeMultipleTimes, p0 );
  1428. }
  1429. public static string Mapping_Default_OCMapping_Clr_Member (object p0, object p1, object p2)
  1430. {
  1431. return SR.GetString (SR.Mapping_Default_OCMapping_Clr_Member, p0, p1, p2 );
  1432. }
  1433. public static string Mapping_Default_OCMapping_Clr_Member2 (object p0, object p1, object p2)
  1434. {
  1435. return SR.GetString (SR.Mapping_Default_OCMapping_Clr_Member2, p0, p1, p2 );
  1436. }
  1437. public static string Mapping_Default_OCMapping_Invalid_MemberType (object p0, object p1, object p2, object p3, object p4, object p5)
  1438. {
  1439. return SR.GetString (SR.Mapping_Default_OCMapping_Invalid_MemberType, p0, p1, p2, p3, p4, p5 );
  1440. }
  1441. public static string Mapping_Default_OCMapping_Member_Count_Mismatch (object p0, object p1)
  1442. {
  1443. return SR.GetString (SR.Mapping_Default_OCMapping_Member_Count_Mismatch, p0, p1 );
  1444. }
  1445. public static string Mapping_Default_OCMapping_MemberKind_Mismatch (object p0, object p1, object p2, object p3, object p4, object p5)
  1446. {
  1447. return SR.GetString (SR.Mapping_Default_OCMapping_MemberKind_Mismatch, p0, p1, p2, p3, p4, p5 );
  1448. }
  1449. public static string Mapping_Default_OCMapping_MultiplicityMismatch (object p0, object p1, object p2, object p3, object p4, object p5)
  1450. {
  1451. return SR.GetString (SR.Mapping_Default_OCMapping_MultiplicityMismatch, p0, p1, p2, p3, p4, p5 );
  1452. }
  1453. public static string Mapping_Duplicate_CdmAssociationSet_StorageMap (object p0)
  1454. {
  1455. return SR.GetString (SR.Mapping_Duplicate_CdmAssociationSet_StorageMap, p0 );
  1456. }
  1457. public static string Mapping_Duplicate_PropertyMap_CaseInsensitive (object p0)
  1458. {
  1459. return SR.GetString (SR.Mapping_Duplicate_PropertyMap_CaseInsensitive, p0 );
  1460. }
  1461. public static string Mapping_Duplicate_Type (object p0)
  1462. {
  1463. return SR.GetString (SR.Mapping_Duplicate_Type, p0 );
  1464. }
  1465. public static string Mapping_Empty_QueryView (object p0)
  1466. {
  1467. return SR.GetString (SR.Mapping_Empty_QueryView, p0 );
  1468. }
  1469. public static string Mapping_Empty_QueryView_OfType (object p0, object p1)
  1470. {
  1471. return SR.GetString (SR.Mapping_Empty_QueryView_OfType, p0, p1 );
  1472. }
  1473. public static string Mapping_Empty_QueryView_OfTypeOnly (object p0, object p1)
  1474. {
  1475. return SR.GetString (SR.Mapping_Empty_QueryView_OfTypeOnly, p0, p1 );
  1476. }
  1477. public static string Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView (object p0, object p1, object p2, object p3)
  1478. {
  1479. return SR.GetString (SR.Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView, p0, p1, p2, p3 );
  1480. }
  1481. public static string Mapping_Enum_EmptyValue (object p0)
  1482. {
  1483. return SR.GetString (SR.Mapping_Enum_EmptyValue, p0 );
  1484. }
  1485. public static string Mapping_Enum_InvalidValue (object p0)
  1486. {
  1487. return SR.GetString (SR.Mapping_Enum_InvalidValue, p0 );
  1488. }
  1489. public static string Mapping_Enum_OCMapping_MemberMismatch (object p0, object p1, object p2, object p3)
  1490. {
  1491. return SR.GetString (SR.Mapping_Enum_OCMapping_MemberMismatch, p0, p1, p2, p3 );
  1492. }
  1493. public static string Mapping_Enum_OCMapping_UnderlyingTypesMismatch (object p0, object p1, object p2, object p3)
  1494. {
  1495. return SR.GetString (SR.Mapping_Enum_OCMapping_UnderlyingTypesMismatch, p0, p1, p2, p3 );
  1496. }
  1497. public static string Mapping_EnumTypeMappingToNonEnumType (object p0, object p1)
  1498. {
  1499. return SR.GetString (SR.Mapping_EnumTypeMappingToNonEnumType, p0, p1 );
  1500. }
  1501. public static string Mapping_FunctionImport_CannotInferTargetFunctionKeys (object p0)
  1502. {
  1503. return SR.GetString (SR.Mapping_FunctionImport_CannotInferTargetFunctionKeys, p0 );
  1504. }
  1505. public static string Mapping_FunctionImport_ConditionValueTypeMismatch (object p0, object p1, object p2)
  1506. {
  1507. return SR.GetString (SR.Mapping_FunctionImport_ConditionValueTypeMismatch, p0, p1, p2 );
  1508. }
  1509. public static string Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet (object p0, object p1)
  1510. {
  1511. return SR.GetString (SR.Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet, p0, p1);
  1512. }
  1513. public static string Mapping_FunctionImport_FunctionAmbiguous (object p0)
  1514. {
  1515. return SR.GetString (SR.Mapping_FunctionImport_FunctionAmbiguous, p0 );
  1516. }
  1517. public static string Mapping_FunctionImport_FunctionImportDoesNotExist (object p0, object p1)
  1518. {
  1519. return SR.GetString (SR.Mapping_FunctionImport_FunctionImportDoesNotExist, p0, p1 );
  1520. }
  1521. public static string Mapping_FunctionImport_FunctionImportMappedMultipleTimes (object p0)
  1522. {
  1523. return SR.GetString (SR.Mapping_FunctionImport_FunctionImportMappedMultipleTimes, p0 );
  1524. }
  1525. public static string Mapping_FunctionImport_ImplicitMappingForAbstractReturnType (object p0, object p1)
  1526. {
  1527. return SR.GetString (SR.Mapping_FunctionImport_ImplicitMappingForAbstractReturnType, p0, p1 );
  1528. }
  1529. public static string Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter (object p0)
  1530. {
  1531. return SR.GetString (SR.Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter, p0 );
  1532. }
  1533. public static string Mapping_FunctionImport_IncompatibleEnumParameterType (object p0, object p1, object p2, object p3)
  1534. {
  1535. return SR.GetString (SR.Mapping_FunctionImport_IncompatibleEnumParameterType, p0, p1, p2, p3 );
  1536. }
  1537. public static string Mapping_FunctionImport_IncompatibleParameterMode (object p0, object p1, object p2)
  1538. {
  1539. return SR.GetString (SR.Mapping_FunctionImport_IncompatibleParameterMode, p0, p1, p2 );
  1540. }
  1541. public static string Mapping_FunctionImport_IncompatibleParameterType (object p0, object p1, object p2)
  1542. {
  1543. return SR.GetString (SR.Mapping_FunctionImport_IncompatibleParameterType, p0, p1, p2 );
  1544. }
  1545. public static string Mapping_FunctionImport_InvalidContentEntityTypeForEntitySet (object p0, object p1, object p2, object p3)
  1546. {
  1547. return SR.GetString (SR.Mapping_FunctionImport_InvalidContentEntityTypeForEntitySet, p0, p1, p2, p3);
  1548. }
  1549. public static string Mapping_FunctionImport_PropertyNotMapped (object p0, object p1, object p2)
  1550. {
  1551. return SR.GetString (SR.Mapping_FunctionImport_PropertyNotMapped, p0, p1, p2 );
  1552. }
  1553. public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected (object p0)
  1554. {
  1555. return SR.GetString (SR.Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected, p0 );
  1556. }
  1557. public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected (object p0)
  1558. {
  1559. return SR.GetString (SR.Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected, p0 );
  1560. }
  1561. public static string Mapping_FunctionImport_ResultMapping_InvalidSType (object p0)
  1562. {
  1563. return SR.GetString (SR.Mapping_FunctionImport_ResultMapping_InvalidSType, p0 );
  1564. }
  1565. public static string Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType (object p0, object p1)
  1566. {
  1567. return SR.GetString (SR.Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType, p0, p1);
  1568. }
  1569. public static string Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount (object p0)
  1570. {
  1571. return SR.GetString (SR.Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount, p0 );
  1572. }
  1573. public static string Mapping_FunctionImport_RowsAffectedParameterDoesNotExist (object p0, object p1)
  1574. {
  1575. return SR.GetString (SR.Mapping_FunctionImport_RowsAffectedParameterDoesNotExist, p0, p1 );
  1576. }
  1577. public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongMode (object p0, object p1, object p2, object p3)
  1578. {
  1579. return SR.GetString (SR.Mapping_FunctionImport_RowsAffectedParameterHasWrongMode, p0, p1, p2, p3);
  1580. }
  1581. public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongType (object p0, object p1)
  1582. {
  1583. return SR.GetString (SR.Mapping_FunctionImport_RowsAffectedParameterHasWrongType, p0, p1 );
  1584. }
  1585. public static string Mapping_FunctionImport_ScalarMappingToMulticolumnTVF (object p0, object p1)
  1586. {
  1587. return SR.GetString (SR.Mapping_FunctionImport_ScalarMappingToMulticolumnTVF, p0, p1 );
  1588. }
  1589. public static string Mapping_FunctionImport_ScalarMappingTypeMismatch (object p0, object p1, object p2, object p3)
  1590. {
  1591. return SR.GetString (SR.Mapping_FunctionImport_ScalarMappingTypeMismatch, p0, p1, p2, p3 );
  1592. }
  1593. public static string Mapping_FunctionImport_StoreFunctionDoesNotExist (object p0)
  1594. {
  1595. return SR.GetString (SR.Mapping_FunctionImport_StoreFunctionDoesNotExist, p0 );
  1596. }
  1597. public static string Mapping_FunctionImport_TargetFunctionMustBeComposable (object p0, object p1)
  1598. {
  1599. return SR.GetString (SR.Mapping_FunctionImport_TargetFunctionMustBeComposable, p0, p1 );
  1600. }
  1601. public static string Mapping_FunctionImport_TargetFunctionMustBeNonComposable (object p0, object p1)
  1602. {
  1603. return SR.GetString (SR.Mapping_FunctionImport_TargetFunctionMustBeNonComposable, p0, p1 );
  1604. }
  1605. public static string Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter (object p0)
  1606. {
  1607. return SR.GetString (SR.Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter, p0 );
  1608. }
  1609. public static string Mapping_FunctionImport_UnreachableIsTypeOf (object p0, object p1)
  1610. {
  1611. return SR.GetString (SR.Mapping_FunctionImport_UnreachableIsTypeOf, p0, p1 );
  1612. }
  1613. public static string Mapping_FunctionImport_UnreachableType (object p0, object p1)
  1614. {
  1615. return SR.GetString (SR.Mapping_FunctionImport_UnreachableType, p0, p1 );
  1616. }
  1617. public static string Mapping_FunctionImport_UnsupportedType (object p0, object p1)
  1618. {
  1619. return SR.GetString (SR.Mapping_FunctionImport_UnsupportedType, p0, p1 );
  1620. }
  1621. public static string Mapping_Invalid_Association_Type_For_Association_Set (object p0, object p1, object p2)
  1622. {
  1623. return SR.GetString (SR.Mapping_Invalid_Association_Type_For_Association_Set, p0, p1, p2 );
  1624. }
  1625. public static string Mapping_Invalid_CSide_ScalarProperty (object p0)
  1626. {
  1627. return SR.GetString (SR.Mapping_Invalid_CSide_ScalarProperty, p0 );
  1628. }
  1629. public static string Mapping_Invalid_CSRootElementMissing (object p0, object p1, object p2)
  1630. {
  1631. return SR.GetString (SR.Mapping_Invalid_CSRootElementMissing, p0, p1, p2 );
  1632. }
  1633. public static string Mapping_Invalid_Member_Mapping (object p0, object p1, object p2, object p3, object p4, object p5)
  1634. {
  1635. return SR.GetString (SR.Mapping_Invalid_Member_Mapping, p0, p1, p2, p3, p4, p5 );
  1636. }
  1637. public static string Mapping_Invalid_Query_Views_MissingSetClosure (object p0)
  1638. {
  1639. return SR.GetString (SR.Mapping_Invalid_Query_Views_MissingSetClosure, p0 );
  1640. }
  1641. public static string Mapping_Invalid_QueryView (object p0, object p1)
  1642. {
  1643. return SR.GetString (SR.Mapping_Invalid_QueryView, p0, p1 );
  1644. }
  1645. public static string Mapping_Invalid_QueryView_Type (object p0)
  1646. {
  1647. return SR.GetString (SR.Mapping_Invalid_QueryView_Type, p0 );
  1648. }
  1649. public static string Mapping_Invalid_QueryView2 (object p0, object p1)
  1650. {
  1651. return SR.GetString (SR.Mapping_Invalid_QueryView2, p0, p1 );
  1652. }
  1653. public static string Mapping_InvalidContent_AbstractEntity_FunctionMapping (object p0)
  1654. {
  1655. return SR.GetString (SR.Mapping_InvalidContent_AbstractEntity_FunctionMapping, p0 );
  1656. }
  1657. public static string Mapping_InvalidContent_AbstractEntity_IsOfType (object p0)
  1658. {
  1659. return SR.GetString (SR.Mapping_InvalidContent_AbstractEntity_IsOfType, p0 );
  1660. }
  1661. public static string Mapping_InvalidContent_AbstractEntity_Type (object p0)
  1662. {
  1663. return SR.GetString (SR.Mapping_InvalidContent_AbstractEntity_Type, p0 );
  1664. }
  1665. public static string Mapping_InvalidContent_Association_Set (object p0)
  1666. {
  1667. return SR.GetString (SR.Mapping_InvalidContent_Association_Set, p0 );
  1668. }
  1669. public static string Mapping_InvalidContent_Association_Type (object p0)
  1670. {
  1671. return SR.GetString (SR.Mapping_InvalidContent_Association_Type, p0 );
  1672. }
  1673. public static string Mapping_InvalidContent_AssociationSet_Condition (object p0)
  1674. {
  1675. return SR.GetString (SR.Mapping_InvalidContent_AssociationSet_Condition, p0 );
  1676. }
  1677. public static string Mapping_InvalidContent_Cdm_Member (object p0)
  1678. {
  1679. return SR.GetString (SR.Mapping_InvalidContent_Cdm_Member, p0 );
  1680. }
  1681. public static string Mapping_InvalidContent_Column (object p0)
  1682. {
  1683. return SR.GetString (SR.Mapping_InvalidContent_Column, p0 );
  1684. }
  1685. public static string Mapping_InvalidContent_Complex_Type (object p0)
  1686. {
  1687. return SR.GetString (SR.Mapping_InvalidContent_Complex_Type, p0 );
  1688. }
  1689. public static string Mapping_InvalidContent_ConditionMapping_Computed (object p0)
  1690. {
  1691. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_Computed, p0 );
  1692. }
  1693. public static string Mapping_InvalidContent_ConditionMapping_InvalidMember (object p0)
  1694. {
  1695. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_InvalidMember, p0 );
  1696. }
  1697. public static string Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind (object p0, object p1)
  1698. {
  1699. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind, p0, p1);
  1700. }
  1701. public static string Mapping_InvalidContent_Duplicate_Cdm_Member (object p0)
  1702. {
  1703. return SR.GetString (SR.Mapping_InvalidContent_Duplicate_Cdm_Member, p0 );
  1704. }
  1705. public static string Mapping_InvalidContent_Duplicate_Condition_Member (object p0)
  1706. {
  1707. return SR.GetString (SR.Mapping_InvalidContent_Duplicate_Condition_Member, p0 );
  1708. }
  1709. public static string Mapping_InvalidContent_Emtpty_SetMap (object p0)
  1710. {
  1711. return SR.GetString (SR.Mapping_InvalidContent_Emtpty_SetMap, p0 );
  1712. }
  1713. public static string Mapping_InvalidContent_End (object p0)
  1714. {
  1715. return SR.GetString (SR.Mapping_InvalidContent_End, p0 );
  1716. }
  1717. public static string Mapping_InvalidContent_EndProperty (object p0)
  1718. {
  1719. return SR.GetString (SR.Mapping_InvalidContent_EndProperty, p0 );
  1720. }
  1721. public static string Mapping_InvalidContent_Entity_Set (object p0)
  1722. {
  1723. return SR.GetString (SR.Mapping_InvalidContent_Entity_Set, p0 );
  1724. }
  1725. public static string Mapping_InvalidContent_Entity_Type (object p0)
  1726. {
  1727. return SR.GetString (SR.Mapping_InvalidContent_Entity_Type, p0 );
  1728. }
  1729. public static string Mapping_InvalidContent_Entity_Type_For_Entity_Set (object p0, object p1, object p2)
  1730. {
  1731. return SR.GetString (SR.Mapping_InvalidContent_Entity_Type_For_Entity_Set, p0, p1, p2 );
  1732. }
  1733. public static string Mapping_InvalidContent_EntityContainer (object p0)
  1734. {
  1735. return SR.GetString (SR.Mapping_InvalidContent_EntityContainer, p0 );
  1736. }
  1737. public static string Mapping_InvalidContent_ForeignKey_Association_Set (object p0)
  1738. {
  1739. return SR.GetString (SR.Mapping_InvalidContent_ForeignKey_Association_Set, p0 );
  1740. }
  1741. public static string Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK (object p0)
  1742. {
  1743. return SR.GetString (SR.Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK, p0 );
  1744. }
  1745. public static string Mapping_InvalidContent_StorageEntityContainer (object p0)
  1746. {
  1747. return SR.GetString (SR.Mapping_InvalidContent_StorageEntityContainer, p0 );
  1748. }
  1749. public static string Mapping_InvalidContent_Table (object p0)
  1750. {
  1751. return SR.GetString (SR.Mapping_InvalidContent_Table, p0 );
  1752. }
  1753. public static string Mapping_InvalidMappingSchema_Parsing (object p0)
  1754. {
  1755. return SR.GetString (SR.Mapping_InvalidMappingSchema_Parsing, p0 );
  1756. }
  1757. public static string Mapping_InvalidMappingSchema_validation (object p0)
  1758. {
  1759. return SR.GetString (SR.Mapping_InvalidMappingSchema_validation, p0 );
  1760. }
  1761. public static string Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace (object p0)
  1762. {
  1763. return SR.GetString (SR.Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace, p0 );
  1764. }
  1765. public static string Mapping_ModificationFunction_AmbiguousFunction (object p0)
  1766. {
  1767. return SR.GetString (SR.Mapping_ModificationFunction_AmbiguousFunction, p0 );
  1768. }
  1769. public static string Mapping_ModificationFunction_AmbiguousResultBinding (object p0, object p1)
  1770. {
  1771. return SR.GetString (SR.Mapping_ModificationFunction_AmbiguousResultBinding, p0, p1 );
  1772. }
  1773. public static string Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation (object p0)
  1774. {
  1775. return SR.GetString (SR.Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation, p0 );
  1776. }
  1777. public static string Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType (object p0, object p1, object p2)
  1778. {
  1779. return SR.GetString (SR.Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType, p0, p1, p2);
  1780. }
  1781. public static string Mapping_ModificationFunction_AssociationSetAmbiguous (object p0)
  1782. {
  1783. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetAmbiguous, p0 );
  1784. }
  1785. public static string Mapping_ModificationFunction_AssociationSetCardinality (object p0)
  1786. {
  1787. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetCardinality, p0 );
  1788. }
  1789. public static string Mapping_ModificationFunction_AssociationSetDoesNotExist (object p0)
  1790. {
  1791. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetDoesNotExist, p0 );
  1792. }
  1793. public static string Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet (object p0)
  1794. {
  1795. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet, p0 );
  1796. }
  1797. public static string Mapping_ModificationFunction_AssociationSetNotMappedForOperation (object p0, object p1, object p2, object p3)
  1798. {
  1799. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetNotMappedForOperation, p0, p1, p2, p3);
  1800. }
  1801. public static string Mapping_ModificationFunction_AssociationSetRoleDoesNotExist (object p0)
  1802. {
  1803. return SR.GetString (SR.Mapping_ModificationFunction_AssociationSetRoleDoesNotExist, p0 );
  1804. }
  1805. public static string Mapping_ModificationFunction_ComplexTypeNotFound (object p0)
  1806. {
  1807. return SR.GetString (SR.Mapping_ModificationFunction_ComplexTypeNotFound, p0 );
  1808. }
  1809. public static string Mapping_ModificationFunction_MissingEntityType (object p0)
  1810. {
  1811. return SR.GetString (SR.Mapping_ModificationFunction_MissingEntityType, p0 );
  1812. }
  1813. public static string Mapping_ModificationFunction_MissingParameter (object p0, object p1)
  1814. {
  1815. return SR.GetString (SR.Mapping_ModificationFunction_MissingParameter, p0, p1 );
  1816. }
  1817. public static string Mapping_ModificationFunction_MissingSetClosure (object p0)
  1818. {
  1819. return SR.GetString (SR.Mapping_ModificationFunction_MissingSetClosure, p0 );
  1820. }
  1821. public static string Mapping_ModificationFunction_MultipleEndsOfAssociationMapped (object p0, object p1, object p2)
  1822. {
  1823. return SR.GetString (SR.Mapping_ModificationFunction_MultipleEndsOfAssociationMapped, p0, p1, p2);
  1824. }
  1825. public static string Mapping_ModificationFunction_NotValidFunction (object p0)
  1826. {
  1827. return SR.GetString (SR.Mapping_ModificationFunction_NotValidFunction, p0 );
  1828. }
  1829. public static string Mapping_ModificationFunction_NotValidFunctionParameter (object p0, object p1, object p2)
  1830. {
  1831. return SR.GetString (SR.Mapping_ModificationFunction_NotValidFunctionParameter, p0, p1, p2 );
  1832. }
  1833. public static string Mapping_ModificationFunction_ParameterBoundTwice (object p0)
  1834. {
  1835. return SR.GetString (SR.Mapping_ModificationFunction_ParameterBoundTwice, p0 );
  1836. }
  1837. public static string Mapping_ModificationFunction_ParameterNotFound (object p0, object p1)
  1838. {
  1839. return SR.GetString (SR.Mapping_ModificationFunction_ParameterNotFound, p0, p1 );
  1840. }
  1841. public static string Mapping_ModificationFunction_PropertyNotFound (object p0, object p1)
  1842. {
  1843. return SR.GetString (SR.Mapping_ModificationFunction_PropertyNotFound, p0, p1 );
  1844. }
  1845. public static string Mapping_ModificationFunction_PropertyNotKey (object p0, object p1)
  1846. {
  1847. return SR.GetString (SR.Mapping_ModificationFunction_PropertyNotKey, p0, p1 );
  1848. }
  1849. public static string Mapping_ModificationFunction_PropertyParameterTypeMismatch (object p0, object p1, object p2, object p3, object p4, object p5)
  1850. {
  1851. return SR.GetString (SR.Mapping_ModificationFunction_PropertyParameterTypeMismatch, p0, p1, p2, p3, p4, p5);
  1852. }
  1853. public static string Mapping_ModificationFunction_RedundantEntityTypeMapping (object p0)
  1854. {
  1855. return SR.GetString (SR.Mapping_ModificationFunction_RedundantEntityTypeMapping, p0 );
  1856. }
  1857. public static string Mapping_ModificationFunction_UnknownFunction (object p0)
  1858. {
  1859. return SR.GetString (SR.Mapping_ModificationFunction_UnknownFunction, p0 );
  1860. }
  1861. public static string Mapping_ModificationFunction_WrongComplexType (object p0, object p1)
  1862. {
  1863. return SR.GetString (SR.Mapping_ModificationFunction_WrongComplexType, p0, p1 );
  1864. }
  1865. public static string Mapping_NotFound_EntityContainer (object p0)
  1866. {
  1867. return SR.GetString (SR.Mapping_NotFound_EntityContainer, p0 );
  1868. }
  1869. public static string Mapping_Object_InvalidType (object p0)
  1870. {
  1871. return SR.GetString (SR.Mapping_Object_InvalidType, p0 );
  1872. }
  1873. public static string Mapping_Provider_WrongConnectionType (object p0)
  1874. {
  1875. return SR.GetString (SR.Mapping_Provider_WrongConnectionType, p0 );
  1876. }
  1877. public static string Mapping_Provider_WrongManifestType (object p0)
  1878. {
  1879. return SR.GetString (SR.Mapping_Provider_WrongManifestType, p0 );
  1880. }
  1881. public static string Mapping_ProviderReturnsNullType (object p0)
  1882. {
  1883. return SR.GetString (SR.Mapping_ProviderReturnsNullType, p0 );
  1884. }
  1885. public static string Mapping_QueryView_Duplicate_OfType (object p0, object p1)
  1886. {
  1887. return SR.GetString (SR.Mapping_QueryView_Duplicate_OfType, p0, p1 );
  1888. }
  1889. public static string Mapping_QueryView_Duplicate_OfTypeOnly (object p0, object p1)
  1890. {
  1891. return SR.GetString (SR.Mapping_QueryView_Duplicate_OfTypeOnly, p0, p1 );
  1892. }
  1893. public static string Mapping_QueryView_For_Base_Type (object p0, object p1)
  1894. {
  1895. return SR.GetString (SR.Mapping_QueryView_For_Base_Type, p0, p1 );
  1896. }
  1897. public static string Mapping_QueryView_PropertyMaps (object p0)
  1898. {
  1899. return SR.GetString (SR.Mapping_QueryView_PropertyMaps, p0 );
  1900. }
  1901. public static string Mapping_QueryView_TypeName_Not_Defined (object p0)
  1902. {
  1903. return SR.GetString (SR.Mapping_QueryView_TypeName_Not_Defined, p0 );
  1904. }
  1905. public static string Mapping_QueryViewMultipleTypeInTypeName (object p0)
  1906. {
  1907. return SR.GetString (SR.Mapping_QueryViewMultipleTypeInTypeName, p0 );
  1908. }
  1909. public static string Mapping_Storage_InvalidSpace (object p0)
  1910. {
  1911. return SR.GetString (SR.Mapping_Storage_InvalidSpace, p0 );
  1912. }
  1913. public static string Mapping_StoreTypeMismatch_ScalarPropertyMapping (object p0, object p1)
  1914. {
  1915. return SR.GetString (SR.Mapping_StoreTypeMismatch_ScalarPropertyMapping, p0, p1 );
  1916. }
  1917. public static string Mapping_TableName_QueryView (object p0)
  1918. {
  1919. return SR.GetString (SR.Mapping_TableName_QueryView, p0 );
  1920. }
  1921. public static string Mapping_UnsupportedExpressionKind_QueryView (object p0, object p1, object p2)
  1922. {
  1923. return SR.GetString (SR.Mapping_UnsupportedExpressionKind_QueryView, p0, p1, p2 );
  1924. }
  1925. public static string Mapping_UnsupportedFunctionCall_QueryView (object p0, object p1)
  1926. {
  1927. return SR.GetString (SR.Mapping_UnsupportedFunctionCall_QueryView, p0, p1 );
  1928. }
  1929. public static string Mapping_UnsupportedInitialization_QueryView (object p0, object p1)
  1930. {
  1931. return SR.GetString (SR.Mapping_UnsupportedInitialization_QueryView, p0, p1 );
  1932. }
  1933. public static string Mapping_UnsupportedPropertyKind_QueryView (object p0, object p1, object p2)
  1934. {
  1935. return SR.GetString (SR.Mapping_UnsupportedPropertyKind_QueryView, p0, p1, p2 );
  1936. }
  1937. public static string Mapping_UnsupportedScanTarget_QueryView (object p0, object p1)
  1938. {
  1939. return SR.GetString (SR.Mapping_UnsupportedScanTarget_QueryView, p0, p1 );
  1940. }
  1941. public static string Mapping_Views_For_Extent_Not_Generated (object p0, object p1)
  1942. {
  1943. return SR.GetString (SR.Mapping_Views_For_Extent_Not_Generated, p0, p1 );
  1944. }
  1945. public static string Materializer_AddedEntityAlreadyExists (object p0)
  1946. {
  1947. return SR.GetString (SR.Materializer_AddedEntityAlreadyExists, p0 );
  1948. }
  1949. public static string Materializer_InvalidCastNullable (object p0, object p1)
  1950. {
  1951. return SR.GetString (SR.Materializer_InvalidCastNullable, p0, p1 );
  1952. }
  1953. public static string Materializer_InvalidCastReference (object p0, object p1)
  1954. {
  1955. return SR.GetString (SR.Materializer_InvalidCastReference, p0, p1 );
  1956. }
  1957. public static string Materializer_NullReferenceCast (object p0)
  1958. {
  1959. return SR.GetString (SR.Materializer_NullReferenceCast, p0 );
  1960. }
  1961. public static string Materializer_PropertyIsNotNullableWithName (object p0)
  1962. {
  1963. return SR.GetString (SR.Materializer_PropertyIsNotNullableWithName, p0 );
  1964. }
  1965. public static string Materializer_RecyclingEntity (object p0, object p1, object p2, object p3)
  1966. {
  1967. return SR.GetString (SR.Materializer_RecyclingEntity, p0, p1, p2, p3 );
  1968. }
  1969. public static string Materializer_SetInvalidValue (object p0, object p1, object p2, object p3)
  1970. {
  1971. return SR.GetString (SR.Materializer_SetInvalidValue, p0, p1, p2, p3 );
  1972. }
  1973. public static string MemberDoesNotBelongToEntityContainer (object p0, object p1)
  1974. {
  1975. return SR.GetString (SR.MemberDoesNotBelongToEntityContainer, p0, p1 );
  1976. }
  1977. public static string MemberInvalidIdentity (object p0)
  1978. {
  1979. return SR.GetString (SR.MemberInvalidIdentity, p0 );
  1980. }
  1981. public static string MinAndMaxMustBePositive (object p0, object p1)
  1982. {
  1983. return SR.GetString (SR.MinAndMaxMustBePositive, p0, p1 );
  1984. }
  1985. public static string MinAndMaxValueMustBeDifferentForNonConstantFacet (object p0, object p1)
  1986. {
  1987. return SR.GetString (SR.MinAndMaxValueMustBeDifferentForNonConstantFacet, p0, p1 );
  1988. }
  1989. public static string MinAndMaxValueMustBeSameForConstantFacet (object p0, object p1)
  1990. {
  1991. return SR.GetString (SR.MinAndMaxValueMustBeSameForConstantFacet, p0, p1 );
  1992. }
  1993. public static string MinMustBeLessThanMax (object p0, object p1, object p2)
  1994. {
  1995. return SR.GetString (SR.MinMustBeLessThanMax, p0, p1, p2 );
  1996. }
  1997. public static string MissingConstraintOnRelationshipType (object p0)
  1998. {
  1999. return SR.GetString (SR.MissingConstraintOnRelationshipType, p0 );
  2000. }
  2001. public static string MissingDefaultValueForConstantFacet (object p0, object p1)
  2002. {
  2003. return SR.GetString (SR.MissingDefaultValueForConstantFacet, p0, p1 );
  2004. }
  2005. public static string MissingEntityContainerEnd (object p0, object p1)
  2006. {
  2007. return SR.GetString (SR.MissingEntityContainerEnd, p0, p1 );
  2008. }
  2009. public static string MissingFacetDescription (object p0, object p1, object p2)
  2010. {
  2011. return SR.GetString (SR.MissingFacetDescription, p0, p1, p2 );
  2012. }
  2013. public static string MoreThanOneItemMatchesIdentity (object p0)
  2014. {
  2015. return SR.GetString (SR.MoreThanOneItemMatchesIdentity, p0 );
  2016. }
  2017. public static string MultipleDefinitionsOfParameter (object p0)
  2018. {
  2019. return SR.GetString (SR.MultipleDefinitionsOfParameter, p0 );
  2020. }
  2021. public static string MultipleDefinitionsOfVariable (object p0)
  2022. {
  2023. return SR.GetString (SR.MultipleDefinitionsOfVariable, p0 );
  2024. }
  2025. public static string NamespaceAliasAlreadyUsed (object p0)
  2026. {
  2027. return SR.GetString (SR.NamespaceAliasAlreadyUsed, p0 );
  2028. }
  2029. public static string NamespaceAlreadyImported (object p0)
  2030. {
  2031. return SR.GetString (SR.NamespaceAlreadyImported, p0 );
  2032. }
  2033. public static string NavigationPropertyRelationshipEndTypeMismatch (object p0, object p1, object p2, object p3, object p4)
  2034. {
  2035. return SR.GetString (SR.NavigationPropertyRelationshipEndTypeMismatch, p0, p1, p2, p3, p4 );
  2036. }
  2037. public static string NeedNotUseSystemNamespaceInUsing (object p0)
  2038. {
  2039. return SR.GetString (SR.NeedNotUseSystemNamespaceInUsing, p0 );
  2040. }
  2041. public static string NestedAggregateCannotBeUsedInAggregate (object p0, object p1)
  2042. {
  2043. return SR.GetString (SR.NestedAggregateCannotBeUsedInAggregate, p0, p1 );
  2044. }
  2045. public static string NestedClassNotSupported (object p0, object p1)
  2046. {
  2047. return SR.GetString (SR.NestedClassNotSupported, p0, p1 );
  2048. }
  2049. public static string NewTypeConflictsWithExistingType (object p0, object p1)
  2050. {
  2051. return SR.GetString (SR.NewTypeConflictsWithExistingType, p0, p1 );
  2052. }
  2053. public static string NoAggrFunctionOverloadMatch (object p0, object p1, object p2)
  2054. {
  2055. return SR.GetString (SR.NoAggrFunctionOverloadMatch, p0, p1, p2 );
  2056. }
  2057. public static string NoCanonicalAggrFunctionOverloadMatch (object p0, object p1, object p2)
  2058. {
  2059. return SR.GetString (SR.NoCanonicalAggrFunctionOverloadMatch, p0, p1, p2 );
  2060. }
  2061. public static string NoCanonicalFunctionOverloadMatch (object p0, object p1, object p2)
  2062. {
  2063. return SR.GetString (SR.NoCanonicalFunctionOverloadMatch, p0, p1, p2 );
  2064. }
  2065. public static string NoCodeGenNamespaceInStructuralAnnotation (object p0)
  2066. {
  2067. return SR.GetString (SR.NoCodeGenNamespaceInStructuralAnnotation, p0 );
  2068. }
  2069. public static string NoCollectionForSpace (object p0)
  2070. {
  2071. return SR.GetString (SR.NoCollectionForSpace, p0 );
  2072. }
  2073. public static string NoFunctionOverloadMatch (object p0, object p1, object p2)
  2074. {
  2075. return SR.GetString (SR.NoFunctionOverloadMatch, p0, p1, p2 );
  2076. }
  2077. public static string NoStoreTypeForEdmType (object p0, object p1)
  2078. {
  2079. return SR.GetString (SR.NoStoreTypeForEdmType, p0, p1 );
  2080. }
  2081. public static string NotAMemberOfCollection (object p0, object p1)
  2082. {
  2083. return SR.GetString (SR.NotAMemberOfCollection, p0, p1 );
  2084. }
  2085. public static string NotAMemberOfType (object p0, object p1)
  2086. {
  2087. return SR.GetString (SR.NotAMemberOfType, p0, p1 );
  2088. }
  2089. public static string NotASuperOrSubType (object p0, object p1)
  2090. {
  2091. return SR.GetString (SR.NotASuperOrSubType, p0, p1 );
  2092. }
  2093. public static string NotInNamespaceAlias (object p0, object p1, object p2)
  2094. {
  2095. return SR.GetString (SR.NotInNamespaceAlias, p0, p1, p2 );
  2096. }
  2097. public static string NotInNamespaceNoAlias (object p0, object p1)
  2098. {
  2099. return SR.GetString (SR.NotInNamespaceNoAlias, p0, p1 );
  2100. }
  2101. public static string NotNamespaceQualified (object p0)
  2102. {
  2103. return SR.GetString (SR.NotNamespaceQualified, p0 );
  2104. }
  2105. public static string NullParameterForEdmRelationshipAttribute (object p0, object p1)
  2106. {
  2107. return SR.GetString (SR.NullParameterForEdmRelationshipAttribute, p0, p1 );
  2108. }
  2109. public static string NullRelationshipNameforEdmRelationshipAttribute (object p0)
  2110. {
  2111. return SR.GetString (SR.NullRelationshipNameforEdmRelationshipAttribute, p0 );
  2112. }
  2113. public static string NumberOfTypeCtorIsLessThenFormalSpec (object p0)
  2114. {
  2115. return SR.GetString (SR.NumberOfTypeCtorIsLessThenFormalSpec, p0 );
  2116. }
  2117. public static string NumberOfTypeCtorIsMoreThenFormalSpec (object p0)
  2118. {
  2119. return SR.GetString (SR.NumberOfTypeCtorIsMoreThenFormalSpec, p0 );
  2120. }
  2121. public static string ObjectContext_AcceptAllChangesFailure (object p0)
  2122. {
  2123. return SR.GetString (SR.ObjectContext_AcceptAllChangesFailure, p0 );
  2124. }
  2125. public static string ObjectContext_CannotExplicitlyLoadDetachedRelationships (object p0)
  2126. {
  2127. return SR.GetString (SR.ObjectContext_CannotExplicitlyLoadDetachedRelationships, p0 );
  2128. }
  2129. public static string ObjectContext_CannotLoadReferencesUsingDifferentContext (object p0)
  2130. {
  2131. return SR.GetString (SR.ObjectContext_CannotLoadReferencesUsingDifferentContext, p0 );
  2132. }
  2133. public static string ObjectContext_ClientEntityRemovedFromStore (object p0)
  2134. {
  2135. return SR.GetString (SR.ObjectContext_ClientEntityRemovedFromStore, p0 );
  2136. }
  2137. public static string ObjectContext_EntitiesHaveDifferentType (object p0, object p1)
  2138. {
  2139. return SR.GetString (SR.ObjectContext_EntitiesHaveDifferentType, p0, p1 );
  2140. }
  2141. public static string ObjectContext_EntityContainerNotFoundForName (object p0)
  2142. {
  2143. return SR.GetString (SR.ObjectContext_EntityContainerNotFoundForName, p0 );
  2144. }
  2145. public static string ObjectContext_EntityMustBeUnchangedOrModified (object p0)
  2146. {
  2147. return SR.GetString (SR.ObjectContext_EntityMustBeUnchangedOrModified, p0 );
  2148. }
  2149. public static string ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted (object p0)
  2150. {
  2151. return SR.GetString (SR.ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted, p0 );
  2152. }
  2153. public static string ObjectContext_EntityNotInObjectSet_Delete (object p0, object p1, object p2, object p3)
  2154. {
  2155. return SR.GetString (SR.ObjectContext_EntityNotInObjectSet_Delete, p0, p1, p2, p3 );
  2156. }
  2157. public static string ObjectContext_EntityNotInObjectSet_Detach (object p0, object p1, object p2, object p3)
  2158. {
  2159. return SR.GetString (SR.ObjectContext_EntityNotInObjectSet_Detach, p0, p1, p2, p3 );
  2160. }
  2161. public static string ObjectContext_EntitySetNotFoundForName (object p0)
  2162. {
  2163. return SR.GetString (SR.ObjectContext_EntitySetNotFoundForName, p0 );
  2164. }
  2165. public static string ObjectContext_ExecuteFunctionCalledWithNonQueryFunction (object p0)
  2166. {
  2167. return SR.GetString (SR.ObjectContext_ExecuteFunctionCalledWithNonQueryFunction, p0 );
  2168. }
  2169. public static string ObjectContext_ExecuteFunctionCalledWithNullParameter (object p0)
  2170. {
  2171. return SR.GetString (SR.ObjectContext_ExecuteFunctionCalledWithNullParameter, p0 );
  2172. }
  2173. public static string ObjectContext_ExecuteFunctionCalledWithScalarFunction (object p0, object p1)
  2174. {
  2175. return SR.GetString (SR.ObjectContext_ExecuteFunctionCalledWithScalarFunction, p0, p1 );
  2176. }
  2177. public static string ObjectContext_ExecuteFunctionTypeMismatch (object p0, object p1)
  2178. {
  2179. return SR.GetString (SR.ObjectContext_ExecuteFunctionTypeMismatch, p0, p1 );
  2180. }
  2181. public static string ObjectContext_InvalidDefaultContainerName (object p0)
  2182. {
  2183. return SR.GetString (SR.ObjectContext_InvalidDefaultContainerName, p0 );
  2184. }
  2185. public static string ObjectContext_InvalidEntitySetForStoreQuery (object p0, object p1, object p2)
  2186. {
  2187. return SR.GetString (SR.ObjectContext_InvalidEntitySetForStoreQuery, p0, p1, p2 );
  2188. }
  2189. public static string ObjectContext_InvalidEntitySetInKey (object p0, object p1, object p2, object p3)
  2190. {
  2191. return SR.GetString (SR.ObjectContext_InvalidEntitySetInKey, p0, p1, p2, p3 );
  2192. }
  2193. public static string ObjectContext_InvalidEntitySetInKeyFromName (object p0, object p1, object p2, object p3, object p4)
  2194. {
  2195. return SR.GetString (SR.ObjectContext_InvalidEntitySetInKeyFromName, p0, p1, p2, p3, p4 );
  2196. }
  2197. public static string ObjectContext_InvalidEntitySetOnEntity (object p0, object p1)
  2198. {
  2199. return SR.GetString (SR.ObjectContext_InvalidEntitySetOnEntity, p0, p1 );
  2200. }
  2201. public static string ObjectContext_InvalidObjectSetTypeForEntitySet (object p0, object p1, object p2)
  2202. {
  2203. return SR.GetString (SR.ObjectContext_InvalidObjectSetTypeForEntitySet, p0, p1, p2 );
  2204. }
  2205. public static string ObjectContext_InvalidTypeForStoreQuery (object p0)
  2206. {
  2207. return SR.GetString (SR.ObjectContext_InvalidTypeForStoreQuery, p0 );
  2208. }
  2209. public static string ObjectContext_MultipleEntitySetsFoundInAllContainers (object p0)
  2210. {
  2211. return SR.GetString (SR.ObjectContext_MultipleEntitySetsFoundInAllContainers, p0 );
  2212. }
  2213. public static string ObjectContext_MultipleEntitySetsFoundInSingleContainer (object p0, object p1)
  2214. {
  2215. return SR.GetString (SR.ObjectContext_MultipleEntitySetsFoundInSingleContainer, p0, p1 );
  2216. }
  2217. public static string ObjectContext_NoEntitySetFoundForType (object p0)
  2218. {
  2219. return SR.GetString (SR.ObjectContext_NoEntitySetFoundForType, p0 );
  2220. }
  2221. public static string ObjectContext_NoMappingForEntityType (object p0)
  2222. {
  2223. return SR.GetString (SR.ObjectContext_NoMappingForEntityType, p0 );
  2224. }
  2225. public static string ObjectContext_NthElementInAddedState (object p0)
  2226. {
  2227. return SR.GetString (SR.ObjectContext_NthElementInAddedState, p0 );
  2228. }
  2229. public static string ObjectContext_NthElementIsDuplicate (object p0)
  2230. {
  2231. return SR.GetString (SR.ObjectContext_NthElementIsDuplicate, p0 );
  2232. }
  2233. public static string ObjectContext_NthElementIsNull (object p0)
  2234. {
  2235. return SR.GetString (SR.ObjectContext_NthElementIsNull, p0 );
  2236. }
  2237. public static string ObjectContext_NthElementNotInObjectStateManager (object p0)
  2238. {
  2239. return SR.GetString (SR.ObjectContext_NthElementNotInObjectStateManager, p0 );
  2240. }
  2241. public static string ObjectContext_TwoPropertiesMappedToSameColumn (object p0, object p1)
  2242. {
  2243. return SR.GetString (SR.ObjectContext_TwoPropertiesMappedToSameColumn, p0, p1 );
  2244. }
  2245. public static string ObjectParameter_InvalidParameterName (object p0)
  2246. {
  2247. return SR.GetString (SR.ObjectParameter_InvalidParameterName, p0 );
  2248. }
  2249. public static string ObjectParameter_InvalidParameterType (object p0)
  2250. {
  2251. return SR.GetString (SR.ObjectParameter_InvalidParameterType, p0 );
  2252. }
  2253. public static string ObjectParameterCollection_DuplicateParameterName (object p0)
  2254. {
  2255. return SR.GetString (SR.ObjectParameterCollection_DuplicateParameterName, p0 );
  2256. }
  2257. public static string ObjectParameterCollection_ParameterAlreadyExists (object p0)
  2258. {
  2259. return SR.GetString (SR.ObjectParameterCollection_ParameterAlreadyExists, p0 );
  2260. }
  2261. public static string ObjectParameterCollection_ParameterNameNotFound (object p0)
  2262. {
  2263. return SR.GetString (SR.ObjectParameterCollection_ParameterNameNotFound, p0 );
  2264. }
  2265. public static string ObjectQuery_InvalidQueryName (object p0)
  2266. {
  2267. return SR.GetString (SR.ObjectQuery_InvalidQueryName, p0 );
  2268. }
  2269. public static string ObjectQuery_QueryBuilder_InvalidResultType (object p0)
  2270. {
  2271. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidResultType, p0 );
  2272. }
  2273. public static string ObjectQuery_Span_NoNavProp (object p0, object p1)
  2274. {
  2275. return SR.GetString (SR.ObjectQuery_Span_NoNavProp, p0, p1 );
  2276. }
  2277. public static string ObjectQuery_UnableToMaterializeArbitaryProjectionType (object p0)
  2278. {
  2279. return SR.GetString (SR.ObjectQuery_UnableToMaterializeArbitaryProjectionType, p0 );
  2280. }
  2281. public static string ObjectQuery_UnableToMaterializeArray (object p0, object p1)
  2282. {
  2283. return SR.GetString (SR.ObjectQuery_UnableToMaterializeArray, p0, p1 );
  2284. }
  2285. public static string ObjectStateEntry_CannotModifyKeyProperty (object p0)
  2286. {
  2287. return SR.GetString (SR.ObjectStateEntry_CannotModifyKeyProperty, p0 );
  2288. }
  2289. public static string ObjectStateEntry_ChangedInDifferentStateFromChanging (object p0, object p1)
  2290. {
  2291. return SR.GetString (SR.ObjectStateEntry_ChangedInDifferentStateFromChanging, p0, p1 );
  2292. }
  2293. public static string ObjectStateEntry_ChangeOnUnmappedComplexProperty (object p0)
  2294. {
  2295. return SR.GetString (SR.ObjectStateEntry_ChangeOnUnmappedComplexProperty, p0 );
  2296. }
  2297. public static string ObjectStateEntry_ChangeOnUnmappedProperty (object p0)
  2298. {
  2299. return SR.GetString (SR.ObjectStateEntry_ChangeOnUnmappedProperty, p0 );
  2300. }
  2301. public static string ObjectStateEntry_ComplexObjectUsedMultipleTimes (object p0, object p1)
  2302. {
  2303. return SR.GetString (SR.ObjectStateEntry_ComplexObjectUsedMultipleTimes, p0, p1 );
  2304. }
  2305. public static string ObjectStateEntry_NullOriginalValueForNonNullableProperty (object p0, object p1, object p2)
  2306. {
  2307. return SR.GetString (SR.ObjectStateEntry_NullOriginalValueForNonNullableProperty, p0, p1, p2 );
  2308. }
  2309. public static string ObjectStateEntry_SetModifiedOnInvalidProperty (object p0)
  2310. {
  2311. return SR.GetString (SR.ObjectStateEntry_SetModifiedOnInvalidProperty, p0 );
  2312. }
  2313. public static string ObjectStateEntry_SetModifiedStates (object p0)
  2314. {
  2315. return SR.GetString (SR.ObjectStateEntry_SetModifiedStates, p0 );
  2316. }
  2317. public static string ObjectStateEntry_SetOriginalComplexProperties (object p0)
  2318. {
  2319. return SR.GetString (SR.ObjectStateEntry_SetOriginalComplexProperties, p0 );
  2320. }
  2321. public static string ObjectStateEntry_SetOriginalPrimaryKey (object p0)
  2322. {
  2323. return SR.GetString (SR.ObjectStateEntry_SetOriginalPrimaryKey, p0 );
  2324. }
  2325. public static string ObjectStateEntry_UnableToEnumerateCollection (object p0, object p1)
  2326. {
  2327. return SR.GetString (SR.ObjectStateEntry_UnableToEnumerateCollection, p0, p1 );
  2328. }
  2329. public static string ObjectStateManager_ConflictingChangesOfRelationshipDetected (object p0, object p1)
  2330. {
  2331. return SR.GetString (SR.ObjectStateManager_ConflictingChangesOfRelationshipDetected, p0, p1 );
  2332. }
  2333. public static string ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity (object p0)
  2334. {
  2335. return SR.GetString (SR.ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity, p0 );
  2336. }
  2337. public static string ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType (object p0, object p1)
  2338. {
  2339. return SR.GetString (SR.ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType, p0, p1 );
  2340. }
  2341. public static string ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey (object p0)
  2342. {
  2343. return SR.GetString (SR.ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey, p0 );
  2344. }
  2345. public static string ObjectStateManager_NoEntryExistsForObject (object p0)
  2346. {
  2347. return SR.GetString (SR.ObjectStateManager_NoEntryExistsForObject, p0 );
  2348. }
  2349. public static string ObjectView_CannotResolveTheEntitySet (object p0)
  2350. {
  2351. return SR.GetString (SR.ObjectView_CannotResolveTheEntitySet, p0 );
  2352. }
  2353. public static string OfTypeExpressionElementTypeMustBeEntityType (object p0, object p1)
  2354. {
  2355. return SR.GetString (SR.OfTypeExpressionElementTypeMustBeEntityType, p0, p1 );
  2356. }
  2357. public static string OfTypeExpressionElementTypeMustBeNominalType (object p0, object p1)
  2358. {
  2359. return SR.GetString (SR.OfTypeExpressionElementTypeMustBeNominalType, p0, p1 );
  2360. }
  2361. public static string OfTypeOnlyTypeArgumentCannotBeAbstract (object p0)
  2362. {
  2363. return SR.GetString (SR.OfTypeOnlyTypeArgumentCannotBeAbstract, p0 );
  2364. }
  2365. public static string ParameterNameAlreadyDefinedDuplicate (object p0)
  2366. {
  2367. return SR.GetString (SR.ParameterNameAlreadyDefinedDuplicate, p0 );
  2368. }
  2369. public static string ParameterTypeNotSupported (object p0, object p1)
  2370. {
  2371. return SR.GetString (SR.ParameterTypeNotSupported, p0, p1 );
  2372. }
  2373. public static string ParameterWasNotDefined (object p0)
  2374. {
  2375. return SR.GetString (SR.ParameterWasNotDefined, p0 );
  2376. }
  2377. public static string PlaceholderExpressionMustBeCompatibleWithEdm64 (object p0, object p1)
  2378. {
  2379. return SR.GetString (SR.PlaceholderExpressionMustBeCompatibleWithEdm64, p0, p1 );
  2380. }
  2381. public static string PlaceholderExpressionMustBeConstant (object p0)
  2382. {
  2383. return SR.GetString (SR.PlaceholderExpressionMustBeConstant, p0 );
  2384. }
  2385. public static string PlaceholderExpressionMustBeGreaterThanOrEqualToZero (object p0)
  2386. {
  2387. return SR.GetString (SR.PlaceholderExpressionMustBeGreaterThanOrEqualToZero, p0 );
  2388. }
  2389. public static string PlaceholderSetArgTypeIsNotEqualComparable (object p0, object p1, object p2)
  2390. {
  2391. return SR.GetString (SR.PlaceholderSetArgTypeIsNotEqualComparable, p0, p1, p2 );
  2392. }
  2393. public static string PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType (object p0, object p1)
  2394. {
  2395. return SR.GetString (SR.PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType, p0, p1 );
  2396. }
  2397. public static string PocoEntityWrapper_UnableToSetFieldOrProperty (object p0, object p1)
  2398. {
  2399. return SR.GetString (SR.PocoEntityWrapper_UnableToSetFieldOrProperty, p0, p1 );
  2400. }
  2401. public static string PocoEntityWrapper_UnexpectedTypeForNavigationProperty (object p0, object p1)
  2402. {
  2403. return SR.GetString (SR.PocoEntityWrapper_UnexpectedTypeForNavigationProperty, p0, p1 );
  2404. }
  2405. public static string PrecisionMustBeGreaterThanScale (object p0, object p1)
  2406. {
  2407. return SR.GetString (SR.PrecisionMustBeGreaterThanScale, p0, p1 );
  2408. }
  2409. public static string PrecisionOutOfRange (object p0, object p1, object p2, object p3)
  2410. {
  2411. return SR.GetString (SR.PrecisionOutOfRange, p0, p1, p2, p3 );
  2412. }
  2413. public static string PropertyNameAlreadyDefinedDuplicate (object p0)
  2414. {
  2415. return SR.GetString (SR.PropertyNameAlreadyDefinedDuplicate, p0 );
  2416. }
  2417. public static string PropertyTypeAlreadyDefined (object p0)
  2418. {
  2419. return SR.GetString (SR.PropertyTypeAlreadyDefined, p0 );
  2420. }
  2421. public static string ProviderDoesNotSupportType (object p0)
  2422. {
  2423. return SR.GetString (SR.ProviderDoesNotSupportType, p0 );
  2424. }
  2425. public static string ProviderReturnedNullForGetDbInformation (object p0)
  2426. {
  2427. return SR.GetString (SR.ProviderReturnedNullForGetDbInformation, p0 );
  2428. }
  2429. public static string RefArgIsNotOfEntityType (object p0)
  2430. {
  2431. return SR.GetString (SR.RefArgIsNotOfEntityType, p0 );
  2432. }
  2433. public static string ReferenceToNonEntityType (object p0)
  2434. {
  2435. return SR.GetString (SR.ReferenceToNonEntityType, p0 );
  2436. }
  2437. public static string RefTypeIdentifierMustSpecifyAnEntityType (object p0, object p1)
  2438. {
  2439. return SR.GetString (SR.RefTypeIdentifierMustSpecifyAnEntityType, p0, p1 );
  2440. }
  2441. public static string RelatedEnd_CannotAddToFixedSizeArray (object p0)
  2442. {
  2443. return SR.GetString (SR.RelatedEnd_CannotAddToFixedSizeArray, p0 );
  2444. }
  2445. public static string RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities (object p0)
  2446. {
  2447. return SR.GetString (SR.RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities, p0 );
  2448. }
  2449. public static string RelatedEnd_CannotRemoveFromFixedSizeArray (object p0)
  2450. {
  2451. return SR.GetString (SR.RelatedEnd_CannotRemoveFromFixedSizeArray, p0 );
  2452. }
  2453. public static string RelatedEnd_CannotSerialize (object p0)
  2454. {
  2455. return SR.GetString (SR.RelatedEnd_CannotSerialize, p0 );
  2456. }
  2457. public static string RelatedEnd_EntitySetIsNotValidForRelationship (object p0, object p1, object p2, object p3, object p4)
  2458. {
  2459. return SR.GetString (SR.RelatedEnd_EntitySetIsNotValidForRelationship, p0, p1, p2, p3, p4 );
  2460. }
  2461. public static string RelatedEnd_InvalidContainedType_Collection (object p0, object p1)
  2462. {
  2463. return SR.GetString (SR.RelatedEnd_InvalidContainedType_Collection, p0, p1 );
  2464. }
  2465. public static string RelatedEnd_InvalidContainedType_Reference (object p0, object p1)
  2466. {
  2467. return SR.GetString (SR.RelatedEnd_InvalidContainedType_Reference, p0, p1 );
  2468. }
  2469. public static string RelatedEnd_InvalidNthElementContextForAttach (object p0)
  2470. {
  2471. return SR.GetString (SR.RelatedEnd_InvalidNthElementContextForAttach, p0 );
  2472. }
  2473. public static string RelatedEnd_InvalidNthElementNullForAttach (object p0)
  2474. {
  2475. return SR.GetString (SR.RelatedEnd_InvalidNthElementNullForAttach, p0 );
  2476. }
  2477. public static string RelatedEnd_InvalidNthElementStateForAttach (object p0)
  2478. {
  2479. return SR.GetString (SR.RelatedEnd_InvalidNthElementStateForAttach, p0 );
  2480. }
  2481. public static string RelatedEnd_InvalidRelationshipFixupDetected (object p0, object p1)
  2482. {
  2483. return SR.GetString (SR.RelatedEnd_InvalidRelationshipFixupDetected, p0, p1 );
  2484. }
  2485. public static string RelatedEnd_MismatchedMergeOptionOnLoad (object p0)
  2486. {
  2487. return SR.GetString (SR.RelatedEnd_MismatchedMergeOptionOnLoad, p0 );
  2488. }
  2489. public static string RelatedEnd_RelatedEndNotAttachedToContext (object p0)
  2490. {
  2491. return SR.GetString (SR.RelatedEnd_RelatedEndNotAttachedToContext, p0 );
  2492. }
  2493. public static string RelatedEndExprTypeMustBePromotoableToToEnd (object p0, object p1)
  2494. {
  2495. return SR.GetString (SR.RelatedEndExprTypeMustBePromotoableToToEnd, p0, p1 );
  2496. }
  2497. public static string RelationshipManager_CollectionAlreadyInitialized (object p0)
  2498. {
  2499. return SR.GetString (SR.RelationshipManager_CollectionAlreadyInitialized, p0 );
  2500. }
  2501. public static string RelationshipManager_CollectionRelationshipManagerAttached (object p0)
  2502. {
  2503. return SR.GetString (SR.RelationshipManager_CollectionRelationshipManagerAttached, p0 );
  2504. }
  2505. public static string RelationshipManager_InvalidTargetRole (object p0, object p1)
  2506. {
  2507. return SR.GetString (SR.RelationshipManager_InvalidTargetRole, p0, p1 );
  2508. }
  2509. public static string RelationshipManager_NavigationPropertyNotFound (object p0)
  2510. {
  2511. return SR.GetString (SR.RelationshipManager_NavigationPropertyNotFound, p0 );
  2512. }
  2513. public static string RelationshipManager_OwnerIsNotSourceType (object p0, object p1, object p2, object p3)
  2514. {
  2515. return SR.GetString (SR.RelationshipManager_OwnerIsNotSourceType, p0, p1, p2, p3 );
  2516. }
  2517. public static string RelationshipManager_ReferenceAlreadyInitialized (object p0)
  2518. {
  2519. return SR.GetString (SR.RelationshipManager_ReferenceAlreadyInitialized, p0 );
  2520. }
  2521. public static string RelationshipManager_RelationshipManagerAttached (object p0)
  2522. {
  2523. return SR.GetString (SR.RelationshipManager_RelationshipManagerAttached, p0 );
  2524. }
  2525. public static string RelationshipManager_UnableToFindRelationshipTypeInMetadata (object p0)
  2526. {
  2527. return SR.GetString (SR.RelationshipManager_UnableToFindRelationshipTypeInMetadata, p0 );
  2528. }
  2529. public static string RelationshipNameInNavigationPropertyNotValid (object p0, object p1, object p2)
  2530. {
  2531. return SR.GetString (SR.RelationshipNameInNavigationPropertyNotValid, p0, p1, p2 );
  2532. }
  2533. public static string RelationshipTargetMustBeUnique (object p0)
  2534. {
  2535. return SR.GetString (SR.RelationshipTargetMustBeUnique, p0 );
  2536. }
  2537. public static string RelationshipTypeExpected (object p0)
  2538. {
  2539. return SR.GetString (SR.RelationshipTypeExpected, p0 );
  2540. }
  2541. public static string RequiredFacetMissing (object p0, object p1)
  2542. {
  2543. return SR.GetString (SR.RequiredFacetMissing, p0, p1 );
  2544. }
  2545. public static string RoleTypeInEdmRelationshipAttributeIsInvalidType (object p0, object p1, object p2)
  2546. {
  2547. return SR.GetString (SR.RoleTypeInEdmRelationshipAttributeIsInvalidType, p0, p1, p2 );
  2548. }
  2549. public static string SameRoleNameOnRelationshipAttribute (object p0, object p1)
  2550. {
  2551. return SR.GetString (SR.SameRoleNameOnRelationshipAttribute, p0, p1 );
  2552. }
  2553. public static string SameRoleReferredInReferentialConstraint (object p0)
  2554. {
  2555. return SR.GetString (SR.SameRoleReferredInReferentialConstraint, p0 );
  2556. }
  2557. public static string ScaleOutOfRange (object p0, object p1, object p2, object p3)
  2558. {
  2559. return SR.GetString (SR.ScaleOutOfRange, p0, p1, p2, p3 );
  2560. }
  2561. public static string SimilarRelationshipEnd (object p0, object p1, object p2, object p3, object p4)
  2562. {
  2563. return SR.GetString (SR.SimilarRelationshipEnd, p0, p1, p2, p3, p4 );
  2564. }
  2565. public static string SourceTypeMustBePromotoableToFromEndRelationType (object p0, object p1)
  2566. {
  2567. return SR.GetString (SR.SourceTypeMustBePromotoableToFromEndRelationType, p0, p1 );
  2568. }
  2569. public static string SqlGen_CanonicalFunctionNotSupportedPriorSql10 (object p0)
  2570. {
  2571. return SR.GetString (SR.SqlGen_CanonicalFunctionNotSupportedPriorSql10, p0 );
  2572. }
  2573. public static string SqlGen_InvalidDatePartArgumentExpression (object p0, object p1)
  2574. {
  2575. return SR.GetString (SR.SqlGen_InvalidDatePartArgumentExpression, p0, p1 );
  2576. }
  2577. public static string SqlGen_InvalidDatePartArgumentValue (object p0, object p1, object p2)
  2578. {
  2579. return SR.GetString (SR.SqlGen_InvalidDatePartArgumentValue, p0, p1, p2 );
  2580. }
  2581. public static string SqlGen_PrimitiveTypeNotSupportedPriorSql10 (object p0)
  2582. {
  2583. return SR.GetString (SR.SqlGen_PrimitiveTypeNotSupportedPriorSql10, p0 );
  2584. }
  2585. public static string SqlGen_TypedNaNNotSupported (object p0)
  2586. {
  2587. return SR.GetString (SR.SqlGen_TypedNaNNotSupported, p0 );
  2588. }
  2589. public static string SqlGen_TypedNegativeInfinityNotSupported (object p0, object p1)
  2590. {
  2591. return SR.GetString (SR.SqlGen_TypedNegativeInfinityNotSupported, p0, p1 );
  2592. }
  2593. public static string SqlGen_TypedPositiveInfinityNotSupported (object p0, object p1)
  2594. {
  2595. return SR.GetString (SR.SqlGen_TypedPositiveInfinityNotSupported, p0, p1 );
  2596. }
  2597. public static string SqlProvider_InvalidGeographyColumn (object p0)
  2598. {
  2599. return SR.GetString (SR.SqlProvider_InvalidGeographyColumn, p0 );
  2600. }
  2601. public static string SqlProvider_InvalidGeometryColumn (object p0)
  2602. {
  2603. return SR.GetString (SR.SqlProvider_InvalidGeometryColumn, p0 );
  2604. }
  2605. public static string SqlProvider_NeedSqlDataReader (object p0)
  2606. {
  2607. return SR.GetString (SR.SqlProvider_NeedSqlDataReader, p0 );
  2608. }
  2609. public static string SqlSpatialServices_ProviderValueNotSqlType (object p0)
  2610. {
  2611. return SR.GetString (SR.SqlSpatialServices_ProviderValueNotSqlType, p0 );
  2612. }
  2613. public static string StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping (object p0, object p1, object p2)
  2614. {
  2615. return SR.GetString (SR.StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping, p0, p1, p2);
  2616. }
  2617. public static string StoreItemCollectionMustHaveOneArtifact (object p0)
  2618. {
  2619. return SR.GetString (SR.StoreItemCollectionMustHaveOneArtifact, p0 );
  2620. }
  2621. public static string SystemNamespaceEncountered (object p0)
  2622. {
  2623. return SR.GetString (SR.SystemNamespaceEncountered, p0 );
  2624. }
  2625. public static string TableAndSchemaAreMutuallyExclusiveWithDefiningQuery (object p0)
  2626. {
  2627. return SR.GetString (SR.TableAndSchemaAreMutuallyExclusiveWithDefiningQuery, p0 );
  2628. }
  2629. public static string TargetRoleNameInNavigationPropertyNotValid (object p0, object p1, object p2, object p3)
  2630. {
  2631. return SR.GetString (SR.TargetRoleNameInNavigationPropertyNotValid, p0, p1, p2, p3 );
  2632. }
  2633. public static string TextNotAllowed (object p0)
  2634. {
  2635. return SR.GetString (SR.TextNotAllowed, p0 );
  2636. }
  2637. public static string TooManyAssociationEnds (object p0)
  2638. {
  2639. return SR.GetString (SR.TooManyAssociationEnds, p0 );
  2640. }
  2641. public static string TypeArgumentBelowMin (object p0)
  2642. {
  2643. return SR.GetString (SR.TypeArgumentBelowMin, p0 );
  2644. }
  2645. public static string TypeArgumentCountMismatch (object p0, object p1)
  2646. {
  2647. return SR.GetString (SR.TypeArgumentCountMismatch, p0, p1 );
  2648. }
  2649. public static string TypeArgumentExceedsMax (object p0)
  2650. {
  2651. return SR.GetString (SR.TypeArgumentExceedsMax, p0 );
  2652. }
  2653. public static string TypeDoesNotSupportFacet (object p0, object p1)
  2654. {
  2655. return SR.GetString (SR.TypeDoesNotSupportFacet, p0, p1 );
  2656. }
  2657. public static string TypeDoesNotSupportSpec (object p0)
  2658. {
  2659. return SR.GetString (SR.TypeDoesNotSupportSpec, p0 );
  2660. }
  2661. public static string TypeKindMismatch (object p0, object p1, object p2, object p3)
  2662. {
  2663. return SR.GetString (SR.TypeKindMismatch, p0, p1, p2, p3 );
  2664. }
  2665. public static string TypeMismatchRelationshipConstaint (object p0, object p1, object p2, object p3, object p4)
  2666. {
  2667. return SR.GetString (SR.TypeMismatchRelationshipConstaint, p0, p1, p2, p3, p4 );
  2668. }
  2669. public static string TypeMustBeEntityType (object p0, object p1, object p2)
  2670. {
  2671. return SR.GetString (SR.TypeMustBeEntityType, p0, p1, p2 );
  2672. }
  2673. public static string TypeMustBeNominalType (object p0, object p1, object p2)
  2674. {
  2675. return SR.GetString (SR.TypeMustBeNominalType, p0, p1, p2 );
  2676. }
  2677. public static string TypeNameAlreadyDefinedDuplicate (object p0)
  2678. {
  2679. return SR.GetString (SR.TypeNameAlreadyDefinedDuplicate, p0 );
  2680. }
  2681. public static string TypeNameNotFound (object p0)
  2682. {
  2683. return SR.GetString (SR.TypeNameNotFound, p0 );
  2684. }
  2685. public static string TypeNotInAssociationSet (object p0, object p1, object p2)
  2686. {
  2687. return SR.GetString (SR.TypeNotInAssociationSet, p0, p1, p2 );
  2688. }
  2689. public static string TypeNotInEntitySet (object p0, object p1, object p2)
  2690. {
  2691. return SR.GetString (SR.TypeNotInEntitySet, p0, p1, p2 );
  2692. }
  2693. public static string UnableToFindReflectedType (object p0, object p1)
  2694. {
  2695. return SR.GetString (SR.UnableToFindReflectedType, p0, p1 );
  2696. }
  2697. public static string UnableToResolveAssembly (object p0)
  2698. {
  2699. return SR.GetString (SR.UnableToResolveAssembly, p0 );
  2700. }
  2701. public static string UnacceptableUri (object p0)
  2702. {
  2703. return SR.GetString (SR.UnacceptableUri, p0 );
  2704. }
  2705. public static string UnexpectedRootElement (object p0, object p1, object p2)
  2706. {
  2707. return SR.GetString (SR.UnexpectedRootElement, p0, p1, p2 );
  2708. }
  2709. public static string UnexpectedRootElementNoNamespace (object p0, object p1, object p2)
  2710. {
  2711. return SR.GetString (SR.UnexpectedRootElementNoNamespace, p0, p1, p2 );
  2712. }
  2713. public static string UnexpectedTypeInCollection (object p0, object p1)
  2714. {
  2715. return SR.GetString (SR.UnexpectedTypeInCollection, p0, p1 );
  2716. }
  2717. public static string UnexpectedXmlAttribute (object p0)
  2718. {
  2719. return SR.GetString (SR.UnexpectedXmlAttribute, p0 );
  2720. }
  2721. public static string UnexpectedXmlElement (object p0)
  2722. {
  2723. return SR.GetString (SR.UnexpectedXmlElement, p0 );
  2724. }
  2725. public static string UnexpectedXmlNodeType (object p0)
  2726. {
  2727. return SR.GetString (SR.UnexpectedXmlNodeType, p0 );
  2728. }
  2729. public static string UnknownExpressionResolutionClass (object p0)
  2730. {
  2731. return SR.GetString (SR.UnknownExpressionResolutionClass, p0 );
  2732. }
  2733. public static string Update_AmbiguousForeignKey (object p0)
  2734. {
  2735. return SR.GetString (SR.Update_AmbiguousForeignKey, p0 );
  2736. }
  2737. public static string Update_ConcurrencyError (object p0)
  2738. {
  2739. return SR.GetString (SR.Update_ConcurrencyError, p0 );
  2740. }
  2741. public static string Update_GeneratedDependent (object p0)
  2742. {
  2743. return SR.GetString (SR.Update_GeneratedDependent, p0 );
  2744. }
  2745. public static string Update_InsertingOrUpdatingReferenceToDeletedEntity (object p0)
  2746. {
  2747. return SR.GetString (SR.Update_InsertingOrUpdatingReferenceToDeletedEntity, p0 );
  2748. }
  2749. public static string Update_MappingNotFound (object p0)
  2750. {
  2751. return SR.GetString (SR.Update_MappingNotFound, p0 );
  2752. }
  2753. public static string Update_MissingEntity (object p0, object p1)
  2754. {
  2755. return SR.GetString (SR.Update_MissingEntity, p0, p1 );
  2756. }
  2757. public static string Update_MissingFunctionMapping (object p0, object p1, object p2)
  2758. {
  2759. return SR.GetString (SR.Update_MissingFunctionMapping, p0, p1, p2 );
  2760. }
  2761. public static string Update_MissingRequiredEntity (object p0, object p1, object p2)
  2762. {
  2763. return SR.GetString (SR.Update_MissingRequiredEntity, p0, p1, p2 );
  2764. }
  2765. public static string Update_MissingRequiredRelationshipValue (object p0, object p1)
  2766. {
  2767. return SR.GetString (SR.Update_MissingRequiredRelationshipValue, p0, p1 );
  2768. }
  2769. public static string Update_MissingResultColumn (object p0)
  2770. {
  2771. return SR.GetString (SR.Update_MissingResultColumn, p0 );
  2772. }
  2773. public static string Update_ModifyingIdentityColumn (object p0, object p1, object p2)
  2774. {
  2775. return SR.GetString (SR.Update_ModifyingIdentityColumn, p0, p1, p2 );
  2776. }
  2777. public static string Update_NotSupportedComputedKeyColumn (object p0, object p1, object p2, object p3, object p4)
  2778. {
  2779. return SR.GetString (SR.Update_NotSupportedComputedKeyColumn, p0, p1, p2, p3, p4 );
  2780. }
  2781. public static string Update_NotSupportedIdentityType (object p0, object p1)
  2782. {
  2783. return SR.GetString (SR.Update_NotSupportedIdentityType, p0, p1 );
  2784. }
  2785. public static string Update_NotSupportedServerGenKey (object p0)
  2786. {
  2787. return SR.GetString (SR.Update_NotSupportedServerGenKey, p0 );
  2788. }
  2789. public static string Update_NullReturnValueForNonNullableMember (object p0, object p1)
  2790. {
  2791. return SR.GetString (SR.Update_NullReturnValueForNonNullableMember, p0, p1 );
  2792. }
  2793. public static string Update_NullValue (object p0)
  2794. {
  2795. return SR.GetString (SR.Update_NullValue, p0 );
  2796. }
  2797. public static string Update_RelationshipCardinalityConstraintViolation (object p0, object p1, object p2, object p3, object p4, object p5)
  2798. {
  2799. return SR.GetString (SR.Update_RelationshipCardinalityConstraintViolation, p0, p1, p2, p3, p4, p5);
  2800. }
  2801. public static string Update_RelationshipCardinalityConstraintViolationSingleValue (object p0, object p1, object p2, object p3, object p4)
  2802. {
  2803. return SR.GetString (SR.Update_RelationshipCardinalityConstraintViolationSingleValue, p0, p1, p2, p3, p4);
  2804. }
  2805. public static string Update_RelationshipCardinalityViolation (object p0, object p1, object p2, object p3, object p4, object p5)
  2806. {
  2807. return SR.GetString (SR.Update_RelationshipCardinalityViolation, p0, p1, p2, p3, p4, p5 );
  2808. }
  2809. public static string Update_ReturnValueHasUnexpectedType (object p0, object p1, object p2, object p3)
  2810. {
  2811. return SR.GetString (SR.Update_ReturnValueHasUnexpectedType, p0, p1, p2, p3 );
  2812. }
  2813. public static string Update_SqlEntitySetWithoutDmlFunctions (object p0, object p1, object p2)
  2814. {
  2815. return SR.GetString (SR.Update_SqlEntitySetWithoutDmlFunctions, p0, p1, p2 );
  2816. }
  2817. public static string Update_UnableToConvertRowsAffectedParameterToInt32 (object p0, object p1)
  2818. {
  2819. return SR.GetString (SR.Update_UnableToConvertRowsAffectedParameterToInt32, p0, p1 );
  2820. }
  2821. public static string Update_UnsupportedCastArgument (object p0)
  2822. {
  2823. return SR.GetString (SR.Update_UnsupportedCastArgument, p0 );
  2824. }
  2825. public static string Update_UnsupportedExpressionKind (object p0, object p1)
  2826. {
  2827. return SR.GetString (SR.Update_UnsupportedExpressionKind, p0, p1 );
  2828. }
  2829. public static string Update_UnsupportedExtentType (object p0, object p1)
  2830. {
  2831. return SR.GetString (SR.Update_UnsupportedExtentType, p0, p1 );
  2832. }
  2833. public static string Update_UnsupportedJoinType (object p0)
  2834. {
  2835. return SR.GetString (SR.Update_UnsupportedJoinType, p0 );
  2836. }
  2837. public static string Update_UnsupportedProjection (object p0)
  2838. {
  2839. return SR.GetString (SR.Update_UnsupportedProjection, p0 );
  2840. }
  2841. public static string Validator_NoKeyMembers (object p0)
  2842. {
  2843. return SR.GetString (SR.Validator_NoKeyMembers, p0 );
  2844. }
  2845. public static string Validator_NullableEntityKeyProperty (object p0, object p1)
  2846. {
  2847. return SR.GetString (SR.Validator_NullableEntityKeyProperty, p0, p1 );
  2848. }
  2849. public static string Validator_OSpace_ComplexPropertyNotComplex (object p0, object p1, object p2)
  2850. {
  2851. return SR.GetString (SR.Validator_OSpace_ComplexPropertyNotComplex, p0, p1, p2 );
  2852. }
  2853. public static string Validator_OSpace_Convention_AmbiguousClrType (object p0, object p1, object p2)
  2854. {
  2855. return SR.GetString (SR.Validator_OSpace_Convention_AmbiguousClrType, p0, p1, p2 );
  2856. }
  2857. public static string Validator_OSpace_Convention_AttributeAssemblyReferenced (object p0)
  2858. {
  2859. return SR.GetString (SR.Validator_OSpace_Convention_AttributeAssemblyReferenced, p0 );
  2860. }
  2861. public static string Validator_OSpace_Convention_BaseTypeIncompatible (object p0, object p1, object p2)
  2862. {
  2863. return SR.GetString (SR.Validator_OSpace_Convention_BaseTypeIncompatible, p0, p1, p2 );
  2864. }
  2865. public static string Validator_OSpace_Convention_BaseTypeNotLoaded (object p0, object p1)
  2866. {
  2867. return SR.GetString (SR.Validator_OSpace_Convention_BaseTypeNotLoaded, p0, p1 );
  2868. }
  2869. public static string Validator_OSpace_Convention_MissingOSpaceType (object p0)
  2870. {
  2871. return SR.GetString (SR.Validator_OSpace_Convention_MissingOSpaceType, p0 );
  2872. }
  2873. public static string Validator_OSpace_Convention_MissingRequiredProperty (object p0, object p1)
  2874. {
  2875. return SR.GetString (SR.Validator_OSpace_Convention_MissingRequiredProperty, p0, p1 );
  2876. }
  2877. public static string Validator_OSpace_Convention_MultipleTypesWithSameName (object p0)
  2878. {
  2879. return SR.GetString (SR.Validator_OSpace_Convention_MultipleTypesWithSameName, p0 );
  2880. }
  2881. public static string Validator_OSpace_Convention_NonPrimitiveTypeProperty (object p0, object p1, object p2)
  2882. {
  2883. return SR.GetString (SR.Validator_OSpace_Convention_NonPrimitiveTypeProperty, p0, p1, p2 );
  2884. }
  2885. public static string Validator_OSpace_Convention_RelationshipNotLoaded (object p0, object p1)
  2886. {
  2887. return SR.GetString (SR.Validator_OSpace_Convention_RelationshipNotLoaded, p0, p1 );
  2888. }
  2889. public static string Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter (object p0, object p1, object p2)
  2890. {
  2891. return SR.GetString (SR.Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter, p0, p1, p2);
  2892. }
  2893. public static string Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch (object p0, object p1)
  2894. {
  2895. return SR.GetString (SR.Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch, p0, p1 );
  2896. }
  2897. public static string Validator_OSpace_Convention_Struct (object p0, object p1)
  2898. {
  2899. return SR.GetString (SR.Validator_OSpace_Convention_Struct, p0, p1 );
  2900. }
  2901. public static string Validator_OSpace_InvalidNavPropReturnType (object p0, object p1, object p2)
  2902. {
  2903. return SR.GetString (SR.Validator_OSpace_InvalidNavPropReturnType, p0, p1, p2 );
  2904. }
  2905. public static string Validator_OSpace_ScalarPropertyNotPrimitive (object p0, object p1, object p2)
  2906. {
  2907. return SR.GetString (SR.Validator_OSpace_ScalarPropertyNotPrimitive, p0, p1, p2 );
  2908. }
  2909. public static string Validator_UnsupportedEnumUnderlyingType (object p0)
  2910. {
  2911. return SR.GetString (SR.Validator_UnsupportedEnumUnderlyingType, p0 );
  2912. }
  2913. public static string ValueNotUnderstood (object p0, object p1)
  2914. {
  2915. return SR.GetString (SR.ValueNotUnderstood, p0, p1 );
  2916. }
  2917. public static string ViewGen_AssociationEndShouldBeMappedToKey (object p0, object p1)
  2918. {
  2919. return SR.GetString (SR.ViewGen_AssociationEndShouldBeMappedToKey, p0, p1 );
  2920. }
  2921. public static string ViewGen_AssociationSet_AsUserString (object p0, object p1, object p2)
  2922. {
  2923. return SR.GetString (SR.ViewGen_AssociationSet_AsUserString, p0, p1, p2 );
  2924. }
  2925. public static string ViewGen_AssociationSet_AsUserString_Negated (object p0, object p1, object p2)
  2926. {
  2927. return SR.GetString (SR.ViewGen_AssociationSet_AsUserString_Negated, p0, p1, p2 );
  2928. }
  2929. public static string ViewGen_AssociationSetKey_Missing (object p0, object p1, object p2)
  2930. {
  2931. return SR.GetString (SR.ViewGen_AssociationSetKey_Missing, p0, p1, p2 );
  2932. }
  2933. public static string ViewGen_Cannot_Disambiguate_MultiConstant (object p0, object p1)
  2934. {
  2935. return SR.GetString (SR.ViewGen_Cannot_Disambiguate_MultiConstant, p0, p1 );
  2936. }
  2937. public static string ViewGen_Cannot_Recover_Attributes (object p0, object p1, object p2)
  2938. {
  2939. return SR.GetString (SR.ViewGen_Cannot_Recover_Attributes, p0, p1, p2 );
  2940. }
  2941. public static string ViewGen_Cannot_Recover_Types (object p0, object p1)
  2942. {
  2943. return SR.GetString (SR.ViewGen_Cannot_Recover_Types, p0, p1 );
  2944. }
  2945. public static string Viewgen_CannotGenerateQueryViewUnderNoValidation (object p0)
  2946. {
  2947. return SR.GetString (SR.Viewgen_CannotGenerateQueryViewUnderNoValidation, p0 );
  2948. }
  2949. public static string ViewGen_Concurrency_Derived_Class (object p0, object p1, object p2)
  2950. {
  2951. return SR.GetString (SR.ViewGen_Concurrency_Derived_Class, p0, p1, p2 );
  2952. }
  2953. public static string ViewGen_Concurrency_Invalid_Condition (object p0, object p1)
  2954. {
  2955. return SR.GetString (SR.ViewGen_Concurrency_Invalid_Condition, p0, p1 );
  2956. }
  2957. public static string Viewgen_ConfigurationErrorMsg (object p0)
  2958. {
  2959. return SR.GetString (SR.Viewgen_ConfigurationErrorMsg, p0 );
  2960. }
  2961. public static string ViewGen_CQ_DomainConstraint (object p0)
  2962. {
  2963. return SR.GetString (SR.ViewGen_CQ_DomainConstraint, p0 );
  2964. }
  2965. public static string ViewGen_CQ_PartitionConstraint (object p0)
  2966. {
  2967. return SR.GetString (SR.ViewGen_CQ_PartitionConstraint, p0 );
  2968. }
  2969. public static string ViewGen_Duplicate_CProperties (object p0)
  2970. {
  2971. return SR.GetString (SR.ViewGen_Duplicate_CProperties, p0 );
  2972. }
  2973. public static string ViewGen_Duplicate_CProperties_IsMapped (object p0, object p1)
  2974. {
  2975. return SR.GetString (SR.ViewGen_Duplicate_CProperties_IsMapped, p0, p1 );
  2976. }
  2977. public static string ViewGen_EntitySet_AsUserString (object p0, object p1)
  2978. {
  2979. return SR.GetString (SR.ViewGen_EntitySet_AsUserString, p0, p1 );
  2980. }
  2981. public static string ViewGen_EntitySet_AsUserString_Negated (object p0, object p1)
  2982. {
  2983. return SR.GetString (SR.ViewGen_EntitySet_AsUserString_Negated, p0, p1 );
  2984. }
  2985. public static string ViewGen_EntitySetKey_Missing (object p0, object p1)
  2986. {
  2987. return SR.GetString (SR.ViewGen_EntitySetKey_Missing, p0, p1 );
  2988. }
  2989. public static string ViewGen_ErrorLog (object p0)
  2990. {
  2991. return SR.GetString (SR.ViewGen_ErrorLog, p0 );
  2992. }
  2993. public static string ViewGen_ErrorLog2 (object p0)
  2994. {
  2995. return SR.GetString (SR.ViewGen_ErrorLog2, p0 );
  2996. }
  2997. public static string Viewgen_ErrorPattern_ConditionMemberIsMapped (object p0)
  2998. {
  2999. return SR.GetString (SR.Viewgen_ErrorPattern_ConditionMemberIsMapped, p0 );
  3000. }
  3001. public static string Viewgen_ErrorPattern_DuplicateConditionValue (object p0)
  3002. {
  3003. return SR.GetString (SR.Viewgen_ErrorPattern_DuplicateConditionValue, p0 );
  3004. }
  3005. public static string Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember (object p0, object p1)
  3006. {
  3007. return SR.GetString (SR.Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember, p0, p1 );
  3008. }
  3009. public static string Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition (object p0, object p1)
  3010. {
  3011. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition, p0, p1);
  3012. }
  3013. public static string Viewgen_ErrorPattern_TableMappedToMultipleES (object p0, object p1, object p2)
  3014. {
  3015. return SR.GetString (SR.Viewgen_ErrorPattern_TableMappedToMultipleES, p0, p1, p2 );
  3016. }
  3017. public static string ViewGen_Foreign_Key (object p0, object p1, object p2, object p3, object p4)
  3018. {
  3019. return SR.GetString (SR.ViewGen_Foreign_Key, p0, p1, p2, p3, p4 );
  3020. }
  3021. public static string ViewGen_Foreign_Key_LowerBound_MustBeOne (object p0, object p1, object p2)
  3022. {
  3023. return SR.GetString (SR.ViewGen_Foreign_Key_LowerBound_MustBeOne, p0, p1, p2 );
  3024. }
  3025. public static string ViewGen_Foreign_Key_Missing_Relationship_Mapping (object p0)
  3026. {
  3027. return SR.GetString (SR.ViewGen_Foreign_Key_Missing_Relationship_Mapping, p0 );
  3028. }
  3029. public static string ViewGen_Foreign_Key_Missing_Table_Mapping (object p0, object p1)
  3030. {
  3031. return SR.GetString (SR.ViewGen_Foreign_Key_Missing_Table_Mapping, p0, p1 );
  3032. }
  3033. public static string ViewGen_Foreign_Key_Not_Guaranteed_InCSpace (object p0)
  3034. {
  3035. return SR.GetString (SR.ViewGen_Foreign_Key_Not_Guaranteed_InCSpace, p0 );
  3036. }
  3037. public static string ViewGen_Foreign_Key_ParentTable_NotMappedToEnd (object p0, object p1, object p2, object p3, object p4, object p5)
  3038. {
  3039. return SR.GetString (SR.ViewGen_Foreign_Key_ParentTable_NotMappedToEnd, p0, p1, p2, p3, p4, p5 );
  3040. }
  3041. public static string ViewGen_Foreign_Key_UpperBound_MustBeOne (object p0, object p1, object p2)
  3042. {
  3043. return SR.GetString (SR.ViewGen_Foreign_Key_UpperBound_MustBeOne, p0, p1, p2 );
  3044. }
  3045. public static string ViewGen_HashOnMappingClosure_Not_Matching (object p0)
  3046. {
  3047. return SR.GetString (SR.ViewGen_HashOnMappingClosure_Not_Matching, p0 );
  3048. }
  3049. public static string ViewGen_InvalidCondition (object p0)
  3050. {
  3051. return SR.GetString (SR.ViewGen_InvalidCondition, p0 );
  3052. }
  3053. public static string ViewGen_KeyConstraint_Update_Violation_AssociationSet (object p0, object p1, object p2)
  3054. {
  3055. return SR.GetString (SR.ViewGen_KeyConstraint_Update_Violation_AssociationSet, p0, p1, p2 );
  3056. }
  3057. public static string ViewGen_KeyConstraint_Update_Violation_EntitySet (object p0, object p1, object p2, object p3)
  3058. {
  3059. return SR.GetString (SR.ViewGen_KeyConstraint_Update_Violation_EntitySet, p0, p1, p2, p3 );
  3060. }
  3061. public static string ViewGen_KeyConstraint_Violation (object p0, object p1, object p2, object p3, object p4, object p5)
  3062. {
  3063. return SR.GetString (SR.ViewGen_KeyConstraint_Violation, p0, p1, p2, p3, p4, p5 );
  3064. }
  3065. public static string ViewGen_Missing_Set_Mapping (object p0)
  3066. {
  3067. return SR.GetString (SR.ViewGen_Missing_Set_Mapping, p0 );
  3068. }
  3069. public static string ViewGen_Missing_Sets_Mapping (object p0)
  3070. {
  3071. return SR.GetString (SR.ViewGen_Missing_Sets_Mapping, p0 );
  3072. }
  3073. public static string ViewGen_Missing_Type_Mapping (object p0)
  3074. {
  3075. return SR.GetString (SR.ViewGen_Missing_Type_Mapping, p0 );
  3076. }
  3077. public static string Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct (object p0, object p1)
  3078. {
  3079. return SR.GetString (SR.Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct, p0, p1 );
  3080. }
  3081. public static string ViewGen_NegatedCellConstant (object p0)
  3082. {
  3083. return SR.GetString (SR.ViewGen_NegatedCellConstant, p0 );
  3084. }
  3085. public static string ViewGen_No_Default_Value (object p0, object p1)
  3086. {
  3087. return SR.GetString (SR.ViewGen_No_Default_Value, p0, p1 );
  3088. }
  3089. public static string ViewGen_No_Default_Value_For_Configuration (object p0)
  3090. {
  3091. return SR.GetString (SR.ViewGen_No_Default_Value_For_Configuration, p0 );
  3092. }
  3093. public static string ViewGen_NonKeyProjectedWithOverlappingPartitions (object p0)
  3094. {
  3095. return SR.GetString (SR.ViewGen_NonKeyProjectedWithOverlappingPartitions, p0 );
  3096. }
  3097. public static string ViewGen_NotNull_No_Projected_Slot (object p0)
  3098. {
  3099. return SR.GetString (SR.ViewGen_NotNull_No_Projected_Slot, p0 );
  3100. }
  3101. public static string Viewgen_NullableMappingForNonNullableColumn (object p0, object p1)
  3102. {
  3103. return SR.GetString (SR.Viewgen_NullableMappingForNonNullableColumn, p0, p1 );
  3104. }
  3105. public static string ViewGen_OneOfConst_IsEqualTo (object p0, object p1)
  3106. {
  3107. return SR.GetString (SR.ViewGen_OneOfConst_IsEqualTo, p0, p1 );
  3108. }
  3109. public static string ViewGen_OneOfConst_IsNonNullable (object p0)
  3110. {
  3111. return SR.GetString (SR.ViewGen_OneOfConst_IsNonNullable, p0 );
  3112. }
  3113. public static string ViewGen_OneOfConst_IsNotEqualTo (object p0, object p1)
  3114. {
  3115. return SR.GetString (SR.ViewGen_OneOfConst_IsNotEqualTo, p0, p1 );
  3116. }
  3117. public static string ViewGen_OneOfConst_IsNotOneOf (object p0, object p1)
  3118. {
  3119. return SR.GetString (SR.ViewGen_OneOfConst_IsNotOneOf, p0, p1 );
  3120. }
  3121. public static string ViewGen_OneOfConst_IsOneOf (object p0, object p1)
  3122. {
  3123. return SR.GetString (SR.ViewGen_OneOfConst_IsOneOf, p0, p1 );
  3124. }
  3125. public static string ViewGen_OneOfConst_IsOneOfTypes (object p0)
  3126. {
  3127. return SR.GetString (SR.ViewGen_OneOfConst_IsOneOfTypes, p0 );
  3128. }
  3129. public static string ViewGen_OneOfConst_MustBeEqualTo (object p0, object p1)
  3130. {
  3131. return SR.GetString (SR.ViewGen_OneOfConst_MustBeEqualTo, p0, p1 );
  3132. }
  3133. public static string ViewGen_OneOfConst_MustBeNonNullable (object p0)
  3134. {
  3135. return SR.GetString (SR.ViewGen_OneOfConst_MustBeNonNullable, p0 );
  3136. }
  3137. public static string ViewGen_OneOfConst_MustBeNull (object p0)
  3138. {
  3139. return SR.GetString (SR.ViewGen_OneOfConst_MustBeNull, p0 );
  3140. }
  3141. public static string ViewGen_OneOfConst_MustBeOneOf (object p0, object p1)
  3142. {
  3143. return SR.GetString (SR.ViewGen_OneOfConst_MustBeOneOf, p0, p1 );
  3144. }
  3145. public static string ViewGen_OneOfConst_MustNotBeEqualTo (object p0, object p1)
  3146. {
  3147. return SR.GetString (SR.ViewGen_OneOfConst_MustNotBeEqualTo, p0, p1 );
  3148. }
  3149. public static string ViewGen_OneOfConst_MustNotBeOneOf (object p0, object p1)
  3150. {
  3151. return SR.GetString (SR.ViewGen_OneOfConst_MustNotBeOneOf, p0, p1 );
  3152. }
  3153. public static string Viewgen_QV_RewritingNotFound (object p0)
  3154. {
  3155. return SR.GetString (SR.Viewgen_QV_RewritingNotFound, p0 );
  3156. }
  3157. public static string Viewgen_RightSideNotDisjoint (object p0)
  3158. {
  3159. return SR.GetString (SR.Viewgen_RightSideNotDisjoint, p0 );
  3160. }
  3161. public static string ViewGen_TableKey_Missing (object p0, object p1)
  3162. {
  3163. return SR.GetString (SR.ViewGen_TableKey_Missing, p0, p1 );
  3164. }
  3165. // Properties
  3166. public static string ADP_ClosedDataReaderError {
  3167. get {
  3168. return SR.GetString (SR.ADP_ClosedDataReaderError);
  3169. }
  3170. }
  3171. public static string ADP_GetSchemaTableIsNotSupported {
  3172. get {
  3173. return SR.GetString (SR.ADP_GetSchemaTableIsNotSupported);
  3174. }
  3175. }
  3176. public static string ADP_ImplicitlyClosedDataReaderError {
  3177. get {
  3178. return SR.GetString (SR.ADP_ImplicitlyClosedDataReaderError);
  3179. }
  3180. }
  3181. public static string ADP_InvalidDataDirectory {
  3182. get {
  3183. return SR.GetString (SR.ADP_InvalidDataDirectory);
  3184. }
  3185. }
  3186. public static string ADP_InvalidDataReaderFieldCountForScalarType {
  3187. get {
  3188. return SR.GetString (SR.ADP_InvalidDataReaderFieldCountForScalarType);
  3189. }
  3190. }
  3191. public static string ADP_InvalidDataReaderUnableToDetermineType {
  3192. get {
  3193. return SR.GetString (SR.ADP_InvalidDataReaderUnableToDetermineType);
  3194. }
  3195. }
  3196. public static string ADP_InvalidMultipartNameDelimiterUsage {
  3197. get {
  3198. return SR.GetString (SR.ADP_InvalidMultipartNameDelimiterUsage);
  3199. }
  3200. }
  3201. public static string ADP_KeysRequiredForNesting {
  3202. get {
  3203. return SR.GetString (SR.ADP_KeysRequiredForNesting);
  3204. }
  3205. }
  3206. public static string ADP_MustUseSequentialAccess {
  3207. get {
  3208. return SR.GetString (SR.ADP_MustUseSequentialAccess);
  3209. }
  3210. }
  3211. public static string ADP_NoData {
  3212. get {
  3213. return SR.GetString (SR.ADP_NoData);
  3214. }
  3215. }
  3216. public static string ADP_ProviderDoesNotSupportCommandTrees {
  3217. get {
  3218. return SR.GetString (SR.ADP_ProviderDoesNotSupportCommandTrees);
  3219. }
  3220. }
  3221. public static string AllElementsMustBeInSchema {
  3222. get {
  3223. return SR.GetString (SR.AllElementsMustBeInSchema);
  3224. }
  3225. }
  3226. public static string AmbiguousFunctionArguments {
  3227. get {
  3228. return SR.GetString (SR.AmbiguousFunctionArguments);
  3229. }
  3230. }
  3231. public static string ArgumentMustBeCSpaceType {
  3232. get {
  3233. return SR.GetString (SR.ArgumentMustBeCSpaceType);
  3234. }
  3235. }
  3236. public static string ArgumentMustBeOSpaceType {
  3237. get {
  3238. return SR.GetString (SR.ArgumentMustBeOSpaceType);
  3239. }
  3240. }
  3241. public static string ArrayTooSmall {
  3242. get {
  3243. return SR.GetString (SR.ArrayTooSmall);
  3244. }
  3245. }
  3246. public static string AtleastOneSSDLNeeded {
  3247. get {
  3248. return SR.GetString (SR.AtleastOneSSDLNeeded);
  3249. }
  3250. }
  3251. public static string BadNavigationPropertyRolesCannotBeTheSame {
  3252. get {
  3253. return SR.GetString (SR.BadNavigationPropertyRolesCannotBeTheSame);
  3254. }
  3255. }
  3256. public static string BetweenLimitsCannotBeUntypedNulls {
  3257. get {
  3258. return SR.GetString (SR.BetweenLimitsCannotBeUntypedNulls);
  3259. }
  3260. }
  3261. public static string CalculatedEnumValueOutOfRange {
  3262. get {
  3263. return SR.GetString (SR.CalculatedEnumValueOutOfRange);
  3264. }
  3265. }
  3266. public static string CannotCreateEmptyMultiset {
  3267. get {
  3268. return SR.GetString (SR.CannotCreateEmptyMultiset);
  3269. }
  3270. }
  3271. public static string CannotCreateMultisetofNulls {
  3272. get {
  3273. return SR.GetString (SR.CannotCreateMultisetofNulls);
  3274. }
  3275. }
  3276. public static string CannotLoadDifferentVersionOfSchemaInTheSameItemCollection {
  3277. get {
  3278. return SR.GetString (SR.CannotLoadDifferentVersionOfSchemaInTheSameItemCollection);
  3279. }
  3280. }
  3281. public static string CodeGen_PropertyDeclaringTypeIsValueType {
  3282. get {
  3283. return SR.GetString (SR.CodeGen_PropertyDeclaringTypeIsValueType);
  3284. }
  3285. }
  3286. public static string CodeGen_PropertyIsIndexed {
  3287. get {
  3288. return SR.GetString (SR.CodeGen_PropertyIsIndexed);
  3289. }
  3290. }
  3291. public static string CodeGen_PropertyIsStatic {
  3292. get {
  3293. return SR.GetString (SR.CodeGen_PropertyIsStatic);
  3294. }
  3295. }
  3296. public static string CodeGen_PropertyNoGetter {
  3297. get {
  3298. return SR.GetString (SR.CodeGen_PropertyNoGetter);
  3299. }
  3300. }
  3301. public static string CodeGen_PropertyNoSetter {
  3302. get {
  3303. return SR.GetString (SR.CodeGen_PropertyNoSetter);
  3304. }
  3305. }
  3306. public static string CodeGen_PropertyStrongNameIdentity {
  3307. get {
  3308. return SR.GetString (SR.CodeGen_PropertyStrongNameIdentity);
  3309. }
  3310. }
  3311. public static string CodeGen_PropertyUnsupportedForm {
  3312. get {
  3313. return SR.GetString (SR.CodeGen_PropertyUnsupportedForm);
  3314. }
  3315. }
  3316. public static string CodeGen_PropertyUnsupportedType {
  3317. get {
  3318. return SR.GetString (SR.CodeGen_PropertyUnsupportedType);
  3319. }
  3320. }
  3321. public static string Collections_InvalidEntityStateSource {
  3322. get {
  3323. return SR.GetString (SR.Collections_InvalidEntityStateSource);
  3324. }
  3325. }
  3326. public static string Collections_UnableToMergeCollections {
  3327. get {
  3328. return SR.GetString (SR.Collections_UnableToMergeCollections);
  3329. }
  3330. }
  3331. public static string CommandTextFunctionsCannotDeclareStoreFunctionName {
  3332. get {
  3333. return SR.GetString (SR.CommandTextFunctionsCannotDeclareStoreFunctionName);
  3334. }
  3335. }
  3336. public static string CommandTextFunctionsNotComposable {
  3337. get {
  3338. return SR.GetString (SR.CommandTextFunctionsNotComposable);
  3339. }
  3340. }
  3341. public static string ComplexObject_ComplexObjectAlreadyAttachedToParent {
  3342. get {
  3343. return SR.GetString (SR.ComplexObject_ComplexObjectAlreadyAttachedToParent);
  3344. }
  3345. }
  3346. public static string ComposableFunctionOrFunctionImportMustDeclareReturnType {
  3347. get {
  3348. return SR.GetString (SR.ComposableFunctionOrFunctionImportMustDeclareReturnType);
  3349. }
  3350. }
  3351. public static string ConcatBuiltinNotSupported {
  3352. get {
  3353. return SR.GetString (SR.ConcatBuiltinNotSupported);
  3354. }
  3355. }
  3356. public static string Cqt_Aggregate_InvalidFunction {
  3357. get {
  3358. return SR.GetString (SR.Cqt_Aggregate_InvalidFunction);
  3359. }
  3360. }
  3361. public static string Cqt_And_BooleanArgumentsRequired {
  3362. get {
  3363. return SR.GetString (SR.Cqt_And_BooleanArgumentsRequired);
  3364. }
  3365. }
  3366. public static string Cqt_Apply_DuplicateVariableNames {
  3367. get {
  3368. return SR.GetString (SR.Cqt_Apply_DuplicateVariableNames);
  3369. }
  3370. }
  3371. public static string Cqt_Arithmetic_NumericCommonType {
  3372. get {
  3373. return SR.GetString (SR.Cqt_Arithmetic_NumericCommonType);
  3374. }
  3375. }
  3376. public static string Cqt_Binding_CollectionRequired {
  3377. get {
  3378. return SR.GetString (SR.Cqt_Binding_CollectionRequired);
  3379. }
  3380. }
  3381. public static string Cqt_Binding_VariableNameNotValid {
  3382. get {
  3383. return SR.GetString (SR.Cqt_Binding_VariableNameNotValid);
  3384. }
  3385. }
  3386. public static string Cqt_Case_InvalidResultType {
  3387. get {
  3388. return SR.GetString (SR.Cqt_Case_InvalidResultType);
  3389. }
  3390. }
  3391. public static string Cqt_Case_WhensMustEqualThens {
  3392. get {
  3393. return SR.GetString (SR.Cqt_Case_WhensMustEqualThens);
  3394. }
  3395. }
  3396. public static string Cqt_CommandTree_InvalidDataSpace {
  3397. get {
  3398. return SR.GetString (SR.Cqt_CommandTree_InvalidDataSpace);
  3399. }
  3400. }
  3401. public static string Cqt_Comparison_ComparableRequired {
  3402. get {
  3403. return SR.GetString (SR.Cqt_Comparison_ComparableRequired);
  3404. }
  3405. }
  3406. public static string Cqt_Constant_InvalidType {
  3407. get {
  3408. return SR.GetString (SR.Cqt_Constant_InvalidType);
  3409. }
  3410. }
  3411. public static string Cqt_CrossJoin_AtLeastTwoInputs {
  3412. get {
  3413. return SR.GetString (SR.Cqt_CrossJoin_AtLeastTwoInputs);
  3414. }
  3415. }
  3416. public static string Cqt_DeRef_RefRequired {
  3417. get {
  3418. return SR.GetString (SR.Cqt_DeRef_RefRequired);
  3419. }
  3420. }
  3421. public static string Cqt_Distinct_InvalidCollection {
  3422. get {
  3423. return SR.GetString (SR.Cqt_Distinct_InvalidCollection);
  3424. }
  3425. }
  3426. public static string Cqt_Element_InvalidArgumentForUnwrapSingleProperty {
  3427. get {
  3428. return SR.GetString (SR.Cqt_Element_InvalidArgumentForUnwrapSingleProperty);
  3429. }
  3430. }
  3431. public static string Cqt_Exceptions_InvalidCommandTree {
  3432. get {
  3433. return SR.GetString (SR.Cqt_Exceptions_InvalidCommandTree);
  3434. }
  3435. }
  3436. public static string Cqt_ExpressionList_IncorrectElementCount {
  3437. get {
  3438. return SR.GetString (SR.Cqt_ExpressionList_IncorrectElementCount);
  3439. }
  3440. }
  3441. public static string Cqt_Factory_IncompatibleRelationEnds {
  3442. get {
  3443. return SR.GetString (SR.Cqt_Factory_IncompatibleRelationEnds);
  3444. }
  3445. }
  3446. public static string Cqt_Factory_NewCollectionInvalidCommonType {
  3447. get {
  3448. return SR.GetString (SR.Cqt_Factory_NewCollectionInvalidCommonType);
  3449. }
  3450. }
  3451. public static string Cqt_Factory_NoSuchRelationEnd {
  3452. get {
  3453. return SR.GetString (SR.Cqt_Factory_NoSuchRelationEnd);
  3454. }
  3455. }
  3456. public static string Cqt_Function_CommandTextInExpression {
  3457. get {
  3458. return SR.GetString (SR.Cqt_Function_CommandTextInExpression);
  3459. }
  3460. }
  3461. public static string Cqt_Function_NonComposableInExpression {
  3462. get {
  3463. return SR.GetString (SR.Cqt_Function_NonComposableInExpression);
  3464. }
  3465. }
  3466. public static string Cqt_Function_VoidResultInvalid {
  3467. get {
  3468. return SR.GetString (SR.Cqt_Function_VoidResultInvalid);
  3469. }
  3470. }
  3471. public static string Cqt_General_MetadataNotReadOnly {
  3472. get {
  3473. return SR.GetString (SR.Cqt_General_MetadataNotReadOnly);
  3474. }
  3475. }
  3476. public static string Cqt_General_NoProviderBooleanType {
  3477. get {
  3478. return SR.GetString (SR.Cqt_General_NoProviderBooleanType);
  3479. }
  3480. }
  3481. public static string Cqt_General_NoProviderIntegerType {
  3482. get {
  3483. return SR.GetString (SR.Cqt_General_NoProviderIntegerType);
  3484. }
  3485. }
  3486. public static string Cqt_General_NoProviderStringType {
  3487. get {
  3488. return SR.GetString (SR.Cqt_General_NoProviderStringType);
  3489. }
  3490. }
  3491. public static string Cqt_GetEntityRef_EntityRequired {
  3492. get {
  3493. return SR.GetString (SR.Cqt_GetEntityRef_EntityRequired);
  3494. }
  3495. }
  3496. public static string Cqt_GetRefKey_RefRequired {
  3497. get {
  3498. return SR.GetString (SR.Cqt_GetRefKey_RefRequired);
  3499. }
  3500. }
  3501. public static string Cqt_GroupBinding_CollectionRequired {
  3502. get {
  3503. return SR.GetString (SR.Cqt_GroupBinding_CollectionRequired);
  3504. }
  3505. }
  3506. public static string Cqt_GroupBinding_GroupVariableNameNotValid {
  3507. get {
  3508. return SR.GetString (SR.Cqt_GroupBinding_GroupVariableNameNotValid);
  3509. }
  3510. }
  3511. public static string Cqt_GroupBy_AtLeastOneKeyOrAggregate {
  3512. get {
  3513. return SR.GetString (SR.Cqt_GroupBy_AtLeastOneKeyOrAggregate);
  3514. }
  3515. }
  3516. public static string Cqt_GroupBy_MoreThanOneGroupAggregate {
  3517. get {
  3518. return SR.GetString (SR.Cqt_GroupBy_MoreThanOneGroupAggregate);
  3519. }
  3520. }
  3521. public static string Cqt_IsNull_CollectionNotAllowed {
  3522. get {
  3523. return SR.GetString (SR.Cqt_IsNull_CollectionNotAllowed);
  3524. }
  3525. }
  3526. public static string Cqt_IsNull_InvalidType {
  3527. get {
  3528. return SR.GetString (SR.Cqt_IsNull_InvalidType);
  3529. }
  3530. }
  3531. public static string Cqt_Join_DuplicateVariableNames {
  3532. get {
  3533. return SR.GetString (SR.Cqt_Join_DuplicateVariableNames);
  3534. }
  3535. }
  3536. public static string Cqt_Limit_ConstantOrParameterRefRequired {
  3537. get {
  3538. return SR.GetString (SR.Cqt_Limit_ConstantOrParameterRefRequired);
  3539. }
  3540. }
  3541. public static string Cqt_Limit_IntegerRequired {
  3542. get {
  3543. return SR.GetString (SR.Cqt_Limit_IntegerRequired);
  3544. }
  3545. }
  3546. public static string Cqt_Limit_NonNegativeLimitRequired {
  3547. get {
  3548. return SR.GetString (SR.Cqt_Limit_NonNegativeLimitRequired);
  3549. }
  3550. }
  3551. public static string Cqt_Metadata_EdmMemberIncorrectSpace {
  3552. get {
  3553. return SR.GetString (SR.Cqt_Metadata_EdmMemberIncorrectSpace);
  3554. }
  3555. }
  3556. public static string Cqt_Metadata_EntitySetEntityContainerNull {
  3557. get {
  3558. return SR.GetString (SR.Cqt_Metadata_EntitySetEntityContainerNull);
  3559. }
  3560. }
  3561. public static string Cqt_Metadata_EntitySetIncorrectSpace {
  3562. get {
  3563. return SR.GetString (SR.Cqt_Metadata_EntitySetIncorrectSpace);
  3564. }
  3565. }
  3566. public static string Cqt_Metadata_EntityTypeEmptyKeyMembersInvalid {
  3567. get {
  3568. return SR.GetString (SR.Cqt_Metadata_EntityTypeEmptyKeyMembersInvalid);
  3569. }
  3570. }
  3571. public static string Cqt_Metadata_EntityTypeNullKeyMembersInvalid {
  3572. get {
  3573. return SR.GetString (SR.Cqt_Metadata_EntityTypeNullKeyMembersInvalid);
  3574. }
  3575. }
  3576. public static string Cqt_Metadata_FunctionIncorrectSpace {
  3577. get {
  3578. return SR.GetString (SR.Cqt_Metadata_FunctionIncorrectSpace);
  3579. }
  3580. }
  3581. public static string Cqt_Metadata_FunctionParameterIncorrectSpace {
  3582. get {
  3583. return SR.GetString (SR.Cqt_Metadata_FunctionParameterIncorrectSpace);
  3584. }
  3585. }
  3586. public static string Cqt_Metadata_FunctionReturnParameterNull {
  3587. get {
  3588. return SR.GetString (SR.Cqt_Metadata_FunctionReturnParameterNull);
  3589. }
  3590. }
  3591. public static string Cqt_Metadata_TypeUsageIncorrectSpace {
  3592. get {
  3593. return SR.GetString (SR.Cqt_Metadata_TypeUsageIncorrectSpace);
  3594. }
  3595. }
  3596. public static string Cqt_NewInstance_CollectionTypeRequired {
  3597. get {
  3598. return SR.GetString (SR.Cqt_NewInstance_CollectionTypeRequired);
  3599. }
  3600. }
  3601. public static string Cqt_NewInstance_IncompatibleRelatedEntity_SourceTypeNotValid {
  3602. get {
  3603. return SR.GetString (SR.Cqt_NewInstance_IncompatibleRelatedEntity_SourceTypeNotValid);
  3604. }
  3605. }
  3606. public static string Cqt_NewInstance_StructuralTypeRequired {
  3607. get {
  3608. return SR.GetString (SR.Cqt_NewInstance_StructuralTypeRequired);
  3609. }
  3610. }
  3611. public static string Cqt_Not_BooleanArgumentRequired {
  3612. get {
  3613. return SR.GetString (SR.Cqt_Not_BooleanArgumentRequired);
  3614. }
  3615. }
  3616. public static string Cqt_Or_BooleanArgumentsRequired {
  3617. get {
  3618. return SR.GetString (SR.Cqt_Or_BooleanArgumentsRequired);
  3619. }
  3620. }
  3621. public static string Cqt_Property_InstanceRequiredForInstance {
  3622. get {
  3623. return SR.GetString (SR.Cqt_Property_InstanceRequiredForInstance);
  3624. }
  3625. }
  3626. public static string Cqt_Ref_PolymorphicArgRequired {
  3627. get {
  3628. return SR.GetString (SR.Cqt_Ref_PolymorphicArgRequired);
  3629. }
  3630. }
  3631. public static string Cqt_RelatedEntityRef_TargetEndFromDifferentRelationship {
  3632. get {
  3633. return SR.GetString (SR.Cqt_RelatedEntityRef_TargetEndFromDifferentRelationship);
  3634. }
  3635. }
  3636. public static string Cqt_RelatedEntityRef_TargetEndMustBeAtMostOne {
  3637. get {
  3638. return SR.GetString (SR.Cqt_RelatedEntityRef_TargetEndMustBeAtMostOne);
  3639. }
  3640. }
  3641. public static string Cqt_RelatedEntityRef_TargetEndSameAsSourceEnd {
  3642. get {
  3643. return SR.GetString (SR.Cqt_RelatedEntityRef_TargetEndSameAsSourceEnd);
  3644. }
  3645. }
  3646. public static string Cqt_RelatedEntityRef_TargetEntityNotCompatible {
  3647. get {
  3648. return SR.GetString (SR.Cqt_RelatedEntityRef_TargetEntityNotCompatible);
  3649. }
  3650. }
  3651. public static string Cqt_RelatedEntityRef_TargetEntityNotRef {
  3652. get {
  3653. return SR.GetString (SR.Cqt_RelatedEntityRef_TargetEntityNotRef);
  3654. }
  3655. }
  3656. public static string Cqt_RelNav_NoCompositions {
  3657. get {
  3658. return SR.GetString (SR.Cqt_RelNav_NoCompositions);
  3659. }
  3660. }
  3661. public static string Cqt_Skip_ConstantOrParameterRefRequired {
  3662. get {
  3663. return SR.GetString (SR.Cqt_Skip_ConstantOrParameterRefRequired);
  3664. }
  3665. }
  3666. public static string Cqt_Skip_IntegerRequired {
  3667. get {
  3668. return SR.GetString (SR.Cqt_Skip_IntegerRequired);
  3669. }
  3670. }
  3671. public static string Cqt_Skip_NonNegativeCountRequired {
  3672. get {
  3673. return SR.GetString (SR.Cqt_Skip_NonNegativeCountRequired);
  3674. }
  3675. }
  3676. public static string Cqt_Sort_EmptyCollationInvalid {
  3677. get {
  3678. return SR.GetString (SR.Cqt_Sort_EmptyCollationInvalid);
  3679. }
  3680. }
  3681. public static string Cqt_Sort_NonStringCollationInvalid {
  3682. get {
  3683. return SR.GetString (SR.Cqt_Sort_NonStringCollationInvalid);
  3684. }
  3685. }
  3686. public static string Cqt_Sort_OrderComparable {
  3687. get {
  3688. return SR.GetString (SR.Cqt_Sort_OrderComparable);
  3689. }
  3690. }
  3691. public static string Cqt_Util_CheckListEmptyInvalid {
  3692. get {
  3693. return SR.GetString (SR.Cqt_Util_CheckListEmptyInvalid);
  3694. }
  3695. }
  3696. public static string CtxAlias {
  3697. get {
  3698. return SR.GetString (SR.CtxAlias);
  3699. }
  3700. }
  3701. public static string CtxAliasedNamespaceImport {
  3702. get {
  3703. return SR.GetString (SR.CtxAliasedNamespaceImport);
  3704. }
  3705. }
  3706. public static string CtxAnd {
  3707. get {
  3708. return SR.GetString (SR.CtxAnd);
  3709. }
  3710. }
  3711. public static string CtxAnyElement {
  3712. get {
  3713. return SR.GetString (SR.CtxAnyElement);
  3714. }
  3715. }
  3716. public static string CtxApplyClause {
  3717. get {
  3718. return SR.GetString (SR.CtxApplyClause);
  3719. }
  3720. }
  3721. public static string CtxBetween {
  3722. get {
  3723. return SR.GetString (SR.CtxBetween);
  3724. }
  3725. }
  3726. public static string CtxCase {
  3727. get {
  3728. return SR.GetString (SR.CtxCase);
  3729. }
  3730. }
  3731. public static string CtxCaseElse {
  3732. get {
  3733. return SR.GetString (SR.CtxCaseElse);
  3734. }
  3735. }
  3736. public static string CtxCaseWhenThen {
  3737. get {
  3738. return SR.GetString (SR.CtxCaseWhenThen);
  3739. }
  3740. }
  3741. public static string CtxCast {
  3742. get {
  3743. return SR.GetString (SR.CtxCast);
  3744. }
  3745. }
  3746. public static string CtxCollatedOrderByClauseItem {
  3747. get {
  3748. return SR.GetString (SR.CtxCollatedOrderByClauseItem);
  3749. }
  3750. }
  3751. public static string CtxCollectionTypeDefinition {
  3752. get {
  3753. return SR.GetString (SR.CtxCollectionTypeDefinition);
  3754. }
  3755. }
  3756. public static string CtxCommandExpression {
  3757. get {
  3758. return SR.GetString (SR.CtxCommandExpression);
  3759. }
  3760. }
  3761. public static string CtxCreateRef {
  3762. get {
  3763. return SR.GetString (SR.CtxCreateRef);
  3764. }
  3765. }
  3766. public static string CtxDeref {
  3767. get {
  3768. return SR.GetString (SR.CtxDeref);
  3769. }
  3770. }
  3771. public static string CtxDivide {
  3772. get {
  3773. return SR.GetString (SR.CtxDivide);
  3774. }
  3775. }
  3776. public static string CtxElement {
  3777. get {
  3778. return SR.GetString (SR.CtxElement);
  3779. }
  3780. }
  3781. public static string CtxEquals {
  3782. get {
  3783. return SR.GetString (SR.CtxEquals);
  3784. }
  3785. }
  3786. public static string CtxEscapedIdentifier {
  3787. get {
  3788. return SR.GetString (SR.CtxEscapedIdentifier);
  3789. }
  3790. }
  3791. public static string CtxExcept {
  3792. get {
  3793. return SR.GetString (SR.CtxExcept);
  3794. }
  3795. }
  3796. public static string CtxExists {
  3797. get {
  3798. return SR.GetString (SR.CtxExists);
  3799. }
  3800. }
  3801. public static string CtxExpressionList {
  3802. get {
  3803. return SR.GetString (SR.CtxExpressionList);
  3804. }
  3805. }
  3806. public static string CtxFlatten {
  3807. get {
  3808. return SR.GetString (SR.CtxFlatten);
  3809. }
  3810. }
  3811. public static string CtxFromApplyClause {
  3812. get {
  3813. return SR.GetString (SR.CtxFromApplyClause);
  3814. }
  3815. }
  3816. public static string CtxFromClause {
  3817. get {
  3818. return SR.GetString (SR.CtxFromClause);
  3819. }
  3820. }
  3821. public static string CtxFromClauseItem {
  3822. get {
  3823. return SR.GetString (SR.CtxFromClauseItem);
  3824. }
  3825. }
  3826. public static string CtxFromClauseList {
  3827. get {
  3828. return SR.GetString (SR.CtxFromClauseList);
  3829. }
  3830. }
  3831. public static string CtxFromJoinClause {
  3832. get {
  3833. return SR.GetString (SR.CtxFromJoinClause);
  3834. }
  3835. }
  3836. public static string CtxFunctionDefinition {
  3837. get {
  3838. return SR.GetString (SR.CtxFunctionDefinition);
  3839. }
  3840. }
  3841. public static string CtxGreaterThan {
  3842. get {
  3843. return SR.GetString (SR.CtxGreaterThan);
  3844. }
  3845. }
  3846. public static string CtxGreaterThanEqual {
  3847. get {
  3848. return SR.GetString (SR.CtxGreaterThanEqual);
  3849. }
  3850. }
  3851. public static string CtxGroupByClause {
  3852. get {
  3853. return SR.GetString (SR.CtxGroupByClause);
  3854. }
  3855. }
  3856. public static string CtxGroupPartition {
  3857. get {
  3858. return SR.GetString (SR.CtxGroupPartition);
  3859. }
  3860. }
  3861. public static string CtxHavingClause {
  3862. get {
  3863. return SR.GetString (SR.CtxHavingClause);
  3864. }
  3865. }
  3866. public static string CtxIdentifier {
  3867. get {
  3868. return SR.GetString (SR.CtxIdentifier);
  3869. }
  3870. }
  3871. public static string CtxIn {
  3872. get {
  3873. return SR.GetString (SR.CtxIn);
  3874. }
  3875. }
  3876. public static string CtxIntersect {
  3877. get {
  3878. return SR.GetString (SR.CtxIntersect);
  3879. }
  3880. }
  3881. public static string CtxIsNotNull {
  3882. get {
  3883. return SR.GetString (SR.CtxIsNotNull);
  3884. }
  3885. }
  3886. public static string CtxIsNotOf {
  3887. get {
  3888. return SR.GetString (SR.CtxIsNotOf);
  3889. }
  3890. }
  3891. public static string CtxIsNull {
  3892. get {
  3893. return SR.GetString (SR.CtxIsNull);
  3894. }
  3895. }
  3896. public static string CtxIsOf {
  3897. get {
  3898. return SR.GetString (SR.CtxIsOf);
  3899. }
  3900. }
  3901. public static string CtxJoinClause {
  3902. get {
  3903. return SR.GetString (SR.CtxJoinClause);
  3904. }
  3905. }
  3906. public static string CtxJoinOnClause {
  3907. get {
  3908. return SR.GetString (SR.CtxJoinOnClause);
  3909. }
  3910. }
  3911. public static string CtxKey {
  3912. get {
  3913. return SR.GetString (SR.CtxKey);
  3914. }
  3915. }
  3916. public static string CtxLessThan {
  3917. get {
  3918. return SR.GetString (SR.CtxLessThan);
  3919. }
  3920. }
  3921. public static string CtxLessThanEqual {
  3922. get {
  3923. return SR.GetString (SR.CtxLessThanEqual);
  3924. }
  3925. }
  3926. public static string CtxLike {
  3927. get {
  3928. return SR.GetString (SR.CtxLike);
  3929. }
  3930. }
  3931. public static string CtxLimitSubClause {
  3932. get {
  3933. return SR.GetString (SR.CtxLimitSubClause);
  3934. }
  3935. }
  3936. public static string CtxLiteral {
  3937. get {
  3938. return SR.GetString (SR.CtxLiteral);
  3939. }
  3940. }
  3941. public static string CtxMemberAccess {
  3942. get {
  3943. return SR.GetString (SR.CtxMemberAccess);
  3944. }
  3945. }
  3946. public static string CtxMethod {
  3947. get {
  3948. return SR.GetString (SR.CtxMethod);
  3949. }
  3950. }
  3951. public static string CtxMinus {
  3952. get {
  3953. return SR.GetString (SR.CtxMinus);
  3954. }
  3955. }
  3956. public static string CtxModulus {
  3957. get {
  3958. return SR.GetString (SR.CtxModulus);
  3959. }
  3960. }
  3961. public static string CtxMultiply {
  3962. get {
  3963. return SR.GetString (SR.CtxMultiply);
  3964. }
  3965. }
  3966. public static string CtxMultisetCtor {
  3967. get {
  3968. return SR.GetString (SR.CtxMultisetCtor);
  3969. }
  3970. }
  3971. public static string CtxNamespaceImport {
  3972. get {
  3973. return SR.GetString (SR.CtxNamespaceImport);
  3974. }
  3975. }
  3976. public static string CtxNamespaceImportList {
  3977. get {
  3978. return SR.GetString (SR.CtxNamespaceImportList);
  3979. }
  3980. }
  3981. public static string CtxNavigate {
  3982. get {
  3983. return SR.GetString (SR.CtxNavigate);
  3984. }
  3985. }
  3986. public static string CtxNot {
  3987. get {
  3988. return SR.GetString (SR.CtxNot);
  3989. }
  3990. }
  3991. public static string CtxNotBetween {
  3992. get {
  3993. return SR.GetString (SR.CtxNotBetween);
  3994. }
  3995. }
  3996. public static string CtxNotEqual {
  3997. get {
  3998. return SR.GetString (SR.CtxNotEqual);
  3999. }
  4000. }
  4001. public static string CtxNotIn {
  4002. get {
  4003. return SR.GetString (SR.CtxNotIn);
  4004. }
  4005. }
  4006. public static string CtxNotLike {
  4007. get {
  4008. return SR.GetString (SR.CtxNotLike);
  4009. }
  4010. }
  4011. public static string CtxNullLiteral {
  4012. get {
  4013. return SR.GetString (SR.CtxNullLiteral);
  4014. }
  4015. }
  4016. public static string CtxOfType {
  4017. get {
  4018. return SR.GetString (SR.CtxOfType);
  4019. }
  4020. }
  4021. public static string CtxOfTypeOnly {
  4022. get {
  4023. return SR.GetString (SR.CtxOfTypeOnly);
  4024. }
  4025. }
  4026. public static string CtxOr {
  4027. get {
  4028. return SR.GetString (SR.CtxOr);
  4029. }
  4030. }
  4031. public static string CtxOrderByClause {
  4032. get {
  4033. return SR.GetString (SR.CtxOrderByClause);
  4034. }
  4035. }
  4036. public static string CtxOrderByClauseItem {
  4037. get {
  4038. return SR.GetString (SR.CtxOrderByClauseItem);
  4039. }
  4040. }
  4041. public static string CtxOverlaps {
  4042. get {
  4043. return SR.GetString (SR.CtxOverlaps);
  4044. }
  4045. }
  4046. public static string CtxParen {
  4047. get {
  4048. return SR.GetString (SR.CtxParen);
  4049. }
  4050. }
  4051. public static string CtxPlus {
  4052. get {
  4053. return SR.GetString (SR.CtxPlus);
  4054. }
  4055. }
  4056. public static string CtxQueryExpression {
  4057. get {
  4058. return SR.GetString (SR.CtxQueryExpression);
  4059. }
  4060. }
  4061. public static string CtxQueryStatement {
  4062. get {
  4063. return SR.GetString (SR.CtxQueryStatement);
  4064. }
  4065. }
  4066. public static string CtxRef {
  4067. get {
  4068. return SR.GetString (SR.CtxRef);
  4069. }
  4070. }
  4071. public static string CtxRefTypeDefinition {
  4072. get {
  4073. return SR.GetString (SR.CtxRefTypeDefinition);
  4074. }
  4075. }
  4076. public static string CtxRelationship {
  4077. get {
  4078. return SR.GetString (SR.CtxRelationship);
  4079. }
  4080. }
  4081. public static string CtxRelationshipList {
  4082. get {
  4083. return SR.GetString (SR.CtxRelationshipList);
  4084. }
  4085. }
  4086. public static string CtxRowCtor {
  4087. get {
  4088. return SR.GetString (SR.CtxRowCtor);
  4089. }
  4090. }
  4091. public static string CtxRowTypeDefinition {
  4092. get {
  4093. return SR.GetString (SR.CtxRowTypeDefinition);
  4094. }
  4095. }
  4096. public static string CtxSelectRowClause {
  4097. get {
  4098. return SR.GetString (SR.CtxSelectRowClause);
  4099. }
  4100. }
  4101. public static string CtxSelectValueClause {
  4102. get {
  4103. return SR.GetString (SR.CtxSelectValueClause);
  4104. }
  4105. }
  4106. public static string CtxSet {
  4107. get {
  4108. return SR.GetString (SR.CtxSet);
  4109. }
  4110. }
  4111. public static string CtxSimpleIdentifier {
  4112. get {
  4113. return SR.GetString (SR.CtxSimpleIdentifier);
  4114. }
  4115. }
  4116. public static string CtxSkipSubClause {
  4117. get {
  4118. return SR.GetString (SR.CtxSkipSubClause);
  4119. }
  4120. }
  4121. public static string CtxTopSubClause {
  4122. get {
  4123. return SR.GetString (SR.CtxTopSubClause);
  4124. }
  4125. }
  4126. public static string CtxTreat {
  4127. get {
  4128. return SR.GetString (SR.CtxTreat);
  4129. }
  4130. }
  4131. public static string CtxTypeName {
  4132. get {
  4133. return SR.GetString (SR.CtxTypeName);
  4134. }
  4135. }
  4136. public static string CtxTypeNameWithTypeSpec {
  4137. get {
  4138. return SR.GetString (SR.CtxTypeNameWithTypeSpec);
  4139. }
  4140. }
  4141. public static string CtxUnaryMinus {
  4142. get {
  4143. return SR.GetString (SR.CtxUnaryMinus);
  4144. }
  4145. }
  4146. public static string CtxUnaryPlus {
  4147. get {
  4148. return SR.GetString (SR.CtxUnaryPlus);
  4149. }
  4150. }
  4151. public static string CtxUnion {
  4152. get {
  4153. return SR.GetString (SR.CtxUnion);
  4154. }
  4155. }
  4156. public static string CtxUnionAll {
  4157. get {
  4158. return SR.GetString (SR.CtxUnionAll);
  4159. }
  4160. }
  4161. public static string CtxWhereClause {
  4162. get {
  4163. return SR.GetString (SR.CtxWhereClause);
  4164. }
  4165. }
  4166. public static string DefaultNotAllowed {
  4167. get {
  4168. return SR.GetString (SR.DefaultNotAllowed);
  4169. }
  4170. }
  4171. public static string DuplicateEnumMember {
  4172. get {
  4173. return SR.GetString (SR.DuplicateEnumMember);
  4174. }
  4175. }
  4176. public static string EdmMembersDefiningTypeDoNotAgreeWithMetadataType {
  4177. get {
  4178. return SR.GetString (SR.EdmMembersDefiningTypeDoNotAgreeWithMetadataType);
  4179. }
  4180. }
  4181. public static string ElementOperatorIsNotSupported {
  4182. get {
  4183. return SR.GetString (SR.ElementOperatorIsNotSupported);
  4184. }
  4185. }
  4186. public static string ELinq_AnonymousType {
  4187. get {
  4188. return SR.GetString (SR.ELinq_AnonymousType);
  4189. }
  4190. }
  4191. public static string ELinq_ClosureType {
  4192. get {
  4193. return SR.GetString (SR.ELinq_ClosureType);
  4194. }
  4195. }
  4196. public static string ELinq_CreateOrderedEnumerableNotSupported {
  4197. get {
  4198. return SR.GetString (SR.ELinq_CreateOrderedEnumerableNotSupported);
  4199. }
  4200. }
  4201. public static string ELinq_CycleDetected {
  4202. get {
  4203. return SR.GetString (SR.ELinq_CycleDetected);
  4204. }
  4205. }
  4206. public static string ELinq_EdmFunctionDirectCall {
  4207. get {
  4208. return SR.GetString (SR.ELinq_EdmFunctionDirectCall);
  4209. }
  4210. }
  4211. public static string ELinq_ExpressionMustBeIQueryable {
  4212. get {
  4213. return SR.GetString (SR.ELinq_ExpressionMustBeIQueryable);
  4214. }
  4215. }
  4216. public static string ELinq_MethodNotDirectlyCallable {
  4217. get {
  4218. return SR.GetString (SR.ELinq_MethodNotDirectlyCallable);
  4219. }
  4220. }
  4221. public static string ELinq_PropertyIndexNotSupported {
  4222. get {
  4223. return SR.GetString (SR.ELinq_PropertyIndexNotSupported);
  4224. }
  4225. }
  4226. public static string ELinq_SkipWithoutOrder {
  4227. get {
  4228. return SR.GetString (SR.ELinq_SkipWithoutOrder);
  4229. }
  4230. }
  4231. public static string ELinq_ThenByDoesNotFollowOrderBy {
  4232. get {
  4233. return SR.GetString (SR.ELinq_ThenByDoesNotFollowOrderBy);
  4234. }
  4235. }
  4236. public static string ELinq_UnsupportedBinding {
  4237. get {
  4238. return SR.GetString (SR.ELinq_UnsupportedBinding);
  4239. }
  4240. }
  4241. public static string ELinq_UnsupportedCastToDecimal {
  4242. get {
  4243. return SR.GetString (SR.ELinq_UnsupportedCastToDecimal);
  4244. }
  4245. }
  4246. public static string ELinq_UnsupportedConstructor {
  4247. get {
  4248. return SR.GetString (SR.ELinq_UnsupportedConstructor);
  4249. }
  4250. }
  4251. public static string ELinq_UnsupportedDifferentContexts {
  4252. get {
  4253. return SR.GetString (SR.ELinq_UnsupportedDifferentContexts);
  4254. }
  4255. }
  4256. public static string ELinq_UnsupportedInclude {
  4257. get {
  4258. return SR.GetString (SR.ELinq_UnsupportedInclude);
  4259. }
  4260. }
  4261. public static string ELinq_UnsupportedInitializers {
  4262. get {
  4263. return SR.GetString (SR.ELinq_UnsupportedInitializers);
  4264. }
  4265. }
  4266. public static string ELinq_UnsupportedMergeAs {
  4267. get {
  4268. return SR.GetString (SR.ELinq_UnsupportedMergeAs);
  4269. }
  4270. }
  4271. public static string ELinq_UnsupportedNestedFirst {
  4272. get {
  4273. return SR.GetString (SR.ELinq_UnsupportedNestedFirst);
  4274. }
  4275. }
  4276. public static string ELinq_UnsupportedNestedSingle {
  4277. get {
  4278. return SR.GetString (SR.ELinq_UnsupportedNestedSingle);
  4279. }
  4280. }
  4281. public static string ELinq_UnsupportedQueryableMethod {
  4282. get {
  4283. return SR.GetString (SR.ELinq_UnsupportedQueryableMethod);
  4284. }
  4285. }
  4286. public static string EmptyCommandText {
  4287. get {
  4288. return SR.GetString (SR.EmptyCommandText);
  4289. }
  4290. }
  4291. public static string EmptyDefiningQuery {
  4292. get {
  4293. return SR.GetString (SR.EmptyDefiningQuery);
  4294. }
  4295. }
  4296. public static string EmptySchemaTextReader {
  4297. get {
  4298. return SR.GetString (SR.EmptySchemaTextReader);
  4299. }
  4300. }
  4301. public static string Entity_EntityCantHaveMultipleChangeTrackers {
  4302. get {
  4303. return SR.GetString (SR.Entity_EntityCantHaveMultipleChangeTrackers);
  4304. }
  4305. }
  4306. public static string EntityClient_CannotCloneStoreProvider {
  4307. get {
  4308. return SR.GetString (SR.EntityClient_CannotCloneStoreProvider);
  4309. }
  4310. }
  4311. public static string EntityClient_CannotDeduceDbType {
  4312. get {
  4313. return SR.GetString (SR.EntityClient_CannotDeduceDbType);
  4314. }
  4315. }
  4316. public static string EntityClient_CannotGetCommandText {
  4317. get {
  4318. return SR.GetString (SR.EntityClient_CannotGetCommandText);
  4319. }
  4320. }
  4321. public static string EntityClient_CannotGetCommandTree {
  4322. get {
  4323. return SR.GetString (SR.EntityClient_CannotGetCommandTree);
  4324. }
  4325. }
  4326. public static string EntityClient_CannotReopenConnection {
  4327. get {
  4328. return SR.GetString (SR.EntityClient_CannotReopenConnection);
  4329. }
  4330. }
  4331. public static string EntityClient_CannotReprepareCommandDefinitionBasedCommand {
  4332. get {
  4333. return SR.GetString (SR.EntityClient_CannotReprepareCommandDefinitionBasedCommand);
  4334. }
  4335. }
  4336. public static string EntityClient_CannotSetCommandText {
  4337. get {
  4338. return SR.GetString (SR.EntityClient_CannotSetCommandText);
  4339. }
  4340. }
  4341. public static string EntityClient_CannotSetCommandTree {
  4342. get {
  4343. return SR.GetString (SR.EntityClient_CannotSetCommandTree);
  4344. }
  4345. }
  4346. public static string EntityClient_ClosedConnectionForUpdate {
  4347. get {
  4348. return SR.GetString (SR.EntityClient_ClosedConnectionForUpdate);
  4349. }
  4350. }
  4351. public static string EntityClient_CommandDefinitionExecutionFailed {
  4352. get {
  4353. return SR.GetString (SR.EntityClient_CommandDefinitionExecutionFailed);
  4354. }
  4355. }
  4356. public static string EntityClient_CommandDefinitionPreparationFailed {
  4357. get {
  4358. return SR.GetString (SR.EntityClient_CommandDefinitionPreparationFailed);
  4359. }
  4360. }
  4361. public static string EntityClient_CommandExecutionFailed {
  4362. get {
  4363. return SR.GetString (SR.EntityClient_CommandExecutionFailed);
  4364. }
  4365. }
  4366. public static string EntityClient_CommandTreeMetadataIncompatible {
  4367. get {
  4368. return SR.GetString (SR.EntityClient_CommandTreeMetadataIncompatible);
  4369. }
  4370. }
  4371. public static string EntityClient_ConnectionMustBeClosed {
  4372. get {
  4373. return SR.GetString (SR.EntityClient_ConnectionMustBeClosed);
  4374. }
  4375. }
  4376. public static string EntityClient_ConnectionNotOpen {
  4377. get {
  4378. return SR.GetString (SR.EntityClient_ConnectionNotOpen);
  4379. }
  4380. }
  4381. public static string EntityClient_ConnectionStateBroken {
  4382. get {
  4383. return SR.GetString (SR.EntityClient_ConnectionStateBroken);
  4384. }
  4385. }
  4386. public static string EntityClient_ConnectionStateClosed {
  4387. get {
  4388. return SR.GetString (SR.EntityClient_ConnectionStateClosed);
  4389. }
  4390. }
  4391. public static string EntityClient_ConnectionStringNeededBeforeOperation {
  4392. get {
  4393. return SR.GetString (SR.EntityClient_ConnectionStringNeededBeforeOperation);
  4394. }
  4395. }
  4396. public static string EntityClient_DataReaderIsStillOpen {
  4397. get {
  4398. return SR.GetString (SR.EntityClient_DataReaderIsStillOpen);
  4399. }
  4400. }
  4401. public static string EntityClient_EmptyParameterName {
  4402. get {
  4403. return SR.GetString (SR.EntityClient_EmptyParameterName);
  4404. }
  4405. }
  4406. public static string EntityClient_ErrorInBeginningTransaction {
  4407. get {
  4408. return SR.GetString (SR.EntityClient_ErrorInBeginningTransaction);
  4409. }
  4410. }
  4411. public static string EntityClient_ErrorInClosingConnection {
  4412. get {
  4413. return SR.GetString (SR.EntityClient_ErrorInClosingConnection);
  4414. }
  4415. }
  4416. public static string EntityClient_ExtraParametersWithNamedConnection {
  4417. get {
  4418. return SR.GetString (SR.EntityClient_ExtraParametersWithNamedConnection);
  4419. }
  4420. }
  4421. public static string EntityClient_FunctionImportEmptyCommandText {
  4422. get {
  4423. return SR.GetString (SR.EntityClient_FunctionImportEmptyCommandText);
  4424. }
  4425. }
  4426. public static string EntityClient_InvalidNamedConnection {
  4427. get {
  4428. return SR.GetString (SR.EntityClient_InvalidNamedConnection);
  4429. }
  4430. }
  4431. public static string EntityClient_InvalidStoredProcedureCommandText {
  4432. get {
  4433. return SR.GetString (SR.EntityClient_InvalidStoredProcedureCommandText);
  4434. }
  4435. }
  4436. public static string EntityClient_InvalidStoreProvider {
  4437. get {
  4438. return SR.GetString (SR.EntityClient_InvalidStoreProvider);
  4439. }
  4440. }
  4441. public static string EntityClient_InvalidTransactionForCommand {
  4442. get {
  4443. return SR.GetString (SR.EntityClient_InvalidTransactionForCommand);
  4444. }
  4445. }
  4446. public static string EntityClient_NoCommandText {
  4447. get {
  4448. return SR.GetString (SR.EntityClient_NoCommandText);
  4449. }
  4450. }
  4451. public static string EntityClient_NoConnectionForAdapter {
  4452. get {
  4453. return SR.GetString (SR.EntityClient_NoConnectionForAdapter);
  4454. }
  4455. }
  4456. public static string EntityClient_NoConnectionForCommand {
  4457. get {
  4458. return SR.GetString (SR.EntityClient_NoConnectionForCommand);
  4459. }
  4460. }
  4461. public static string EntityClient_NoStoreConnectionForUpdate {
  4462. get {
  4463. return SR.GetString (SR.EntityClient_NoStoreConnectionForUpdate);
  4464. }
  4465. }
  4466. public static string EntityClient_ProviderGeneralError {
  4467. get {
  4468. return SR.GetString (SR.EntityClient_ProviderGeneralError);
  4469. }
  4470. }
  4471. public static string EntityClient_RequiresNonStoreCommandTree {
  4472. get {
  4473. return SR.GetString (SR.EntityClient_RequiresNonStoreCommandTree);
  4474. }
  4475. }
  4476. public static string EntityClient_SettingsCannotBeChangedOnOpenConnection {
  4477. get {
  4478. return SR.GetString (SR.EntityClient_SettingsCannotBeChangedOnOpenConnection);
  4479. }
  4480. }
  4481. public static string EntityClient_StoreReaderFailed {
  4482. get {
  4483. return SR.GetString (SR.EntityClient_StoreReaderFailed);
  4484. }
  4485. }
  4486. public static string EntityClient_TooFewColumns {
  4487. get {
  4488. return SR.GetString (SR.EntityClient_TooFewColumns);
  4489. }
  4490. }
  4491. public static string EntityClient_TransactionAlreadyStarted {
  4492. get {
  4493. return SR.GetString (SR.EntityClient_TransactionAlreadyStarted);
  4494. }
  4495. }
  4496. public static string EntityClient_UnsupportedCommandType {
  4497. get {
  4498. return SR.GetString (SR.EntityClient_UnsupportedCommandType);
  4499. }
  4500. }
  4501. public static string EntityClient_ValueNotString {
  4502. get {
  4503. return SR.GetString (SR.EntityClient_ValueNotString);
  4504. }
  4505. }
  4506. public static string EntityKey_CannotChangeKey {
  4507. get {
  4508. return SR.GetString (SR.EntityKey_CannotChangeKey);
  4509. }
  4510. }
  4511. public static string EntityKey_DataRecordMustBeEntity {
  4512. get {
  4513. return SR.GetString (SR.EntityKey_DataRecordMustBeEntity);
  4514. }
  4515. }
  4516. public static string EntityKey_EntityKeyMustHaveValues {
  4517. get {
  4518. return SR.GetString (SR.EntityKey_EntityKeyMustHaveValues);
  4519. }
  4520. }
  4521. public static string EntityKey_InvalidQualifiedEntitySetName {
  4522. get {
  4523. return SR.GetString (SR.EntityKey_InvalidQualifiedEntitySetName);
  4524. }
  4525. }
  4526. public static string EntityKey_MissingEntitySetName {
  4527. get {
  4528. return SR.GetString (SR.EntityKey_MissingEntitySetName);
  4529. }
  4530. }
  4531. public static string EntityKey_NoNullsAllowedInKeyValuePairs {
  4532. get {
  4533. return SR.GetString (SR.EntityKey_NoNullsAllowedInKeyValuePairs);
  4534. }
  4535. }
  4536. public static string EntityKey_UnexpectedNull {
  4537. get {
  4538. return SR.GetString (SR.EntityKey_UnexpectedNull);
  4539. }
  4540. }
  4541. public static string EntityParameterCollectionRemoveInvalidObject {
  4542. get {
  4543. return SR.GetString (SR.EntityParameterCollectionRemoveInvalidObject);
  4544. }
  4545. }
  4546. public static string EntityParameterContainedByAnotherCollection {
  4547. get {
  4548. return SR.GetString (SR.EntityParameterContainedByAnotherCollection);
  4549. }
  4550. }
  4551. public static string EntityParameterNull {
  4552. get {
  4553. return SR.GetString (SR.EntityParameterNull);
  4554. }
  4555. }
  4556. public static string EntityProxyTypeInfo_ProxyHasWrongWrapper {
  4557. get {
  4558. return SR.GetString (SR.EntityProxyTypeInfo_ProxyHasWrongWrapper);
  4559. }
  4560. }
  4561. public static string EntityReference_CannotChangeReferentialConstraintProperty {
  4562. get {
  4563. return SR.GetString (SR.EntityReference_CannotChangeReferentialConstraintProperty);
  4564. }
  4565. }
  4566. public static string EntityReference_CannotSetSpecialKeys {
  4567. get {
  4568. return SR.GetString (SR.EntityReference_CannotSetSpecialKeys);
  4569. }
  4570. }
  4571. public static string EntityReference_EntityKeyValueMismatch {
  4572. get {
  4573. return SR.GetString (SR.EntityReference_EntityKeyValueMismatch);
  4574. }
  4575. }
  4576. public static string EntityReference_LessThanExpectedRelatedEntitiesFound {
  4577. get {
  4578. return SR.GetString (SR.EntityReference_LessThanExpectedRelatedEntitiesFound);
  4579. }
  4580. }
  4581. public static string EntityReference_MoreThanExpectedRelatedEntitiesFound {
  4582. get {
  4583. return SR.GetString (SR.EntityReference_MoreThanExpectedRelatedEntitiesFound);
  4584. }
  4585. }
  4586. public static string EntitySetInAnotherContainer {
  4587. get {
  4588. return SR.GetString (SR.EntitySetInAnotherContainer);
  4589. }
  4590. }
  4591. public static string EntityTypesDoNotAgree {
  4592. get {
  4593. return SR.GetString (SR.EntityTypesDoNotAgree);
  4594. }
  4595. }
  4596. public static string ExpressionCannotBeNull {
  4597. get {
  4598. return SR.GetString (SR.ExpressionCannotBeNull);
  4599. }
  4600. }
  4601. public static string ExpressionMustBeCollection {
  4602. get {
  4603. return SR.GetString (SR.ExpressionMustBeCollection);
  4604. }
  4605. }
  4606. public static string ExpressionMustBeNumericType {
  4607. get {
  4608. return SR.GetString (SR.ExpressionMustBeNumericType);
  4609. }
  4610. }
  4611. public static string ExpressionTypeMustBeBoolean {
  4612. get {
  4613. return SR.GetString (SR.ExpressionTypeMustBeBoolean);
  4614. }
  4615. }
  4616. public static string ExpressionTypeMustBeEqualComparable {
  4617. get {
  4618. return SR.GetString (SR.ExpressionTypeMustBeEqualComparable);
  4619. }
  4620. }
  4621. public static string ExpressionTypeMustNotBeCollection {
  4622. get {
  4623. return SR.GetString (SR.ExpressionTypeMustNotBeCollection);
  4624. }
  4625. }
  4626. public static string ExprIsNotValidEntitySetForCreateRef {
  4627. get {
  4628. return SR.GetString (SR.ExprIsNotValidEntitySetForCreateRef);
  4629. }
  4630. }
  4631. public static string ExtraInfo {
  4632. get {
  4633. return SR.GetString (SR.ExtraInfo);
  4634. }
  4635. }
  4636. public static string FacetDeclarationRequiresTypeAttribute {
  4637. get {
  4638. return SR.GetString (SR.FacetDeclarationRequiresTypeAttribute);
  4639. }
  4640. }
  4641. public static string FailedToRetrieveProviderManifest {
  4642. get {
  4643. return SR.GetString (SR.FailedToRetrieveProviderManifest);
  4644. }
  4645. }
  4646. public static string GeneralQueryError {
  4647. get {
  4648. return SR.GetString (SR.GeneralQueryError);
  4649. }
  4650. }
  4651. public static string Generated_Views_Changed {
  4652. get {
  4653. return SR.GetString (SR.Generated_Views_Changed);
  4654. }
  4655. }
  4656. public static string GeneratorErrorSeverityError {
  4657. get {
  4658. return SR.GetString (SR.GeneratorErrorSeverityError);
  4659. }
  4660. }
  4661. public static string GeneratorErrorSeverityUnknown {
  4662. get {
  4663. return SR.GetString (SR.GeneratorErrorSeverityUnknown);
  4664. }
  4665. }
  4666. public static string GeneratorErrorSeverityWarning {
  4667. get {
  4668. return SR.GetString (SR.GeneratorErrorSeverityWarning);
  4669. }
  4670. }
  4671. public static string GenericSyntaxError {
  4672. get {
  4673. return SR.GetString (SR.GenericSyntaxError);
  4674. }
  4675. }
  4676. public static string GroupingKeysMustBeEqualComparable {
  4677. get {
  4678. return SR.GetString (SR.GroupingKeysMustBeEqualComparable);
  4679. }
  4680. }
  4681. public static string GroupPartitionOutOfContext {
  4682. get {
  4683. return SR.GetString (SR.GroupPartitionOutOfContext);
  4684. }
  4685. }
  4686. public static string GroupVarNotFoundInScope {
  4687. get {
  4688. return SR.GetString (SR.GroupVarNotFoundInScope);
  4689. }
  4690. }
  4691. public static string HavingRequiresGroupClause {
  4692. get {
  4693. return SR.GetString (SR.HavingRequiresGroupClause);
  4694. }
  4695. }
  4696. public static string ImcompatibleCreateRefKeyElementType {
  4697. get {
  4698. return SR.GetString (SR.ImcompatibleCreateRefKeyElementType);
  4699. }
  4700. }
  4701. public static string ImcompatibleCreateRefKeyType {
  4702. get {
  4703. return SR.GetString (SR.ImcompatibleCreateRefKeyType);
  4704. }
  4705. }
  4706. public static string IncorrectProviderManifest {
  4707. get {
  4708. return SR.GetString (SR.IncorrectProviderManifest);
  4709. }
  4710. }
  4711. public static string InFromClause {
  4712. get {
  4713. return SR.GetString (SR.InFromClause);
  4714. }
  4715. }
  4716. public static string InGroupClause {
  4717. get {
  4718. return SR.GetString (SR.InGroupClause);
  4719. }
  4720. }
  4721. public static string InnerJoinMustHaveOnPredicate {
  4722. get {
  4723. return SR.GetString (SR.InnerJoinMustHaveOnPredicate);
  4724. }
  4725. }
  4726. public static string InRowCtor {
  4727. get {
  4728. return SR.GetString (SR.InRowCtor);
  4729. }
  4730. }
  4731. public static string InSelectProjectionList {
  4732. get {
  4733. return SR.GetString (SR.InSelectProjectionList);
  4734. }
  4735. }
  4736. public static string InvalidArgumentTypeForAggregateFunction {
  4737. get {
  4738. return SR.GetString (SR.InvalidArgumentTypeForAggregateFunction);
  4739. }
  4740. }
  4741. public static string InvalidCaseResultTypes {
  4742. get {
  4743. return SR.GetString (SR.InvalidCaseResultTypes);
  4744. }
  4745. }
  4746. public static string InvalidCaseWhenThenNullType {
  4747. get {
  4748. return SR.GetString (SR.InvalidCaseWhenThenNullType);
  4749. }
  4750. }
  4751. public static string InvalidCastExpressionType {
  4752. get {
  4753. return SR.GetString (SR.InvalidCastExpressionType);
  4754. }
  4755. }
  4756. public static string InvalidCastType {
  4757. get {
  4758. return SR.GetString (SR.InvalidCastType);
  4759. }
  4760. }
  4761. public static string InvalidCreateRefKeyType {
  4762. get {
  4763. return SR.GetString (SR.InvalidCreateRefKeyType);
  4764. }
  4765. }
  4766. public static string InvalidDistinctArgumentInCtor {
  4767. get {
  4768. return SR.GetString (SR.InvalidDistinctArgumentInCtor);
  4769. }
  4770. }
  4771. public static string InvalidDistinctArgumentInNonAggFunction {
  4772. get {
  4773. return SR.GetString (SR.InvalidDistinctArgumentInNonAggFunction);
  4774. }
  4775. }
  4776. public static string InvalidDocumentationBothTextAndStructure {
  4777. get {
  4778. return SR.GetString (SR.InvalidDocumentationBothTextAndStructure);
  4779. }
  4780. }
  4781. public static string InvalidEmptyIdentifier {
  4782. get {
  4783. return SR.GetString (SR.InvalidEmptyIdentifier);
  4784. }
  4785. }
  4786. public static string InvalidEmptyQuery {
  4787. get {
  4788. return SR.GetString (SR.InvalidEmptyQuery);
  4789. }
  4790. }
  4791. public static string InvalidEmptyQueryTextArgument {
  4792. get {
  4793. return SR.GetString (SR.InvalidEmptyQueryTextArgument);
  4794. }
  4795. }
  4796. public static string InvalidEnumUnderlyingType {
  4797. get {
  4798. return SR.GetString (SR.InvalidEnumUnderlyingType);
  4799. }
  4800. }
  4801. public static string InvalidFlattenArgument {
  4802. get {
  4803. return SR.GetString (SR.InvalidFlattenArgument);
  4804. }
  4805. }
  4806. public static string InvalidJoinLeftCorrelation {
  4807. get {
  4808. return SR.GetString (SR.InvalidJoinLeftCorrelation);
  4809. }
  4810. }
  4811. public static string InvalidMaxLengthSize {
  4812. get {
  4813. return SR.GetString (SR.InvalidMaxLengthSize);
  4814. }
  4815. }
  4816. public static string InvalidMetadataMemberName {
  4817. get {
  4818. return SR.GetString (SR.InvalidMetadataMemberName);
  4819. }
  4820. }
  4821. public static string InvalidMetadataPath {
  4822. get {
  4823. return SR.GetString (SR.InvalidMetadataPath);
  4824. }
  4825. }
  4826. public static string InvalidModeForWithRelationshipClause {
  4827. get {
  4828. return SR.GetString (SR.InvalidModeForWithRelationshipClause);
  4829. }
  4830. }
  4831. public static string InvalidNamespaceAlias {
  4832. get {
  4833. return SR.GetString (SR.InvalidNamespaceAlias);
  4834. }
  4835. }
  4836. public static string InvalidNullArithmetic {
  4837. get {
  4838. return SR.GetString (SR.InvalidNullArithmetic);
  4839. }
  4840. }
  4841. public static string InvalidNullComparison {
  4842. get {
  4843. return SR.GetString (SR.InvalidNullComparison);
  4844. }
  4845. }
  4846. public static string InvalidOperationMultipleEndsInAssociation {
  4847. get {
  4848. return SR.GetString (SR.InvalidOperationMultipleEndsInAssociation);
  4849. }
  4850. }
  4851. public static string InvalidOperatorSymbol {
  4852. get {
  4853. return SR.GetString (SR.InvalidOperatorSymbol);
  4854. }
  4855. }
  4856. public static string InvalidPredicateForCrossJoin {
  4857. get {
  4858. return SR.GetString (SR.InvalidPredicateForCrossJoin);
  4859. }
  4860. }
  4861. public static string InvalidPunctuatorSymbol {
  4862. get {
  4863. return SR.GetString (SR.InvalidPunctuatorSymbol);
  4864. }
  4865. }
  4866. public static string InvalidSavePoint {
  4867. get {
  4868. return SR.GetString (SR.InvalidSavePoint);
  4869. }
  4870. }
  4871. public static string InvalidScopeIndex {
  4872. get {
  4873. return SR.GetString (SR.InvalidScopeIndex);
  4874. }
  4875. }
  4876. public static string InvalidSelectValueAliasedExpression {
  4877. get {
  4878. return SR.GetString (SR.InvalidSelectValueAliasedExpression);
  4879. }
  4880. }
  4881. public static string InvalidSelectValueList {
  4882. get {
  4883. return SR.GetString (SR.InvalidSelectValueList);
  4884. }
  4885. }
  4886. public static string InvalidTypeForWithRelationshipClause {
  4887. get {
  4888. return SR.GetString (SR.InvalidTypeForWithRelationshipClause);
  4889. }
  4890. }
  4891. public static string Iqt_CTGen_UnexpectedAggregate {
  4892. get {
  4893. return SR.GetString (SR.Iqt_CTGen_UnexpectedAggregate);
  4894. }
  4895. }
  4896. public static string Iqt_CTGen_UnexpectedVarDef {
  4897. get {
  4898. return SR.GetString (SR.Iqt_CTGen_UnexpectedVarDef);
  4899. }
  4900. }
  4901. public static string Iqt_CTGen_UnexpectedVarDefList {
  4902. get {
  4903. return SR.GetString (SR.Iqt_CTGen_UnexpectedVarDefList);
  4904. }
  4905. }
  4906. public static string IsNullInvalidType {
  4907. get {
  4908. return SR.GetString (SR.IsNullInvalidType);
  4909. }
  4910. }
  4911. public static string LeftSetExpressionArgsMustBeCollection {
  4912. get {
  4913. return SR.GetString (SR.LeftSetExpressionArgsMustBeCollection);
  4914. }
  4915. }
  4916. public static string LikeArgMustBeStringType {
  4917. get {
  4918. return SR.GetString (SR.LikeArgMustBeStringType);
  4919. }
  4920. }
  4921. public static string LocalizedCollection {
  4922. get {
  4923. return SR.GetString (SR.LocalizedCollection);
  4924. }
  4925. }
  4926. public static string LocalizedColumn {
  4927. get {
  4928. return SR.GetString (SR.LocalizedColumn);
  4929. }
  4930. }
  4931. public static string LocalizedComplex {
  4932. get {
  4933. return SR.GetString (SR.LocalizedComplex);
  4934. }
  4935. }
  4936. public static string LocalizedEntity {
  4937. get {
  4938. return SR.GetString (SR.LocalizedEntity);
  4939. }
  4940. }
  4941. public static string LocalizedEntityContainerExpression {
  4942. get {
  4943. return SR.GetString (SR.LocalizedEntityContainerExpression);
  4944. }
  4945. }
  4946. public static string LocalizedEnumMember {
  4947. get {
  4948. return SR.GetString (SR.LocalizedEnumMember);
  4949. }
  4950. }
  4951. public static string LocalizedFunction {
  4952. get {
  4953. return SR.GetString (SR.LocalizedFunction);
  4954. }
  4955. }
  4956. public static string LocalizedInlineFunction {
  4957. get {
  4958. return SR.GetString (SR.LocalizedInlineFunction);
  4959. }
  4960. }
  4961. public static string LocalizedKeyword {
  4962. get {
  4963. return SR.GetString (SR.LocalizedKeyword);
  4964. }
  4965. }
  4966. public static string LocalizedLeft {
  4967. get {
  4968. return SR.GetString (SR.LocalizedLeft);
  4969. }
  4970. }
  4971. public static string LocalizedLine {
  4972. get {
  4973. return SR.GetString (SR.LocalizedLine);
  4974. }
  4975. }
  4976. public static string LocalizedMetadataMemberExpression {
  4977. get {
  4978. return SR.GetString (SR.LocalizedMetadataMemberExpression);
  4979. }
  4980. }
  4981. public static string LocalizedNamespace {
  4982. get {
  4983. return SR.GetString (SR.LocalizedNamespace);
  4984. }
  4985. }
  4986. public static string LocalizedNear {
  4987. get {
  4988. return SR.GetString (SR.LocalizedNear);
  4989. }
  4990. }
  4991. public static string LocalizedPrimitive {
  4992. get {
  4993. return SR.GetString (SR.LocalizedPrimitive);
  4994. }
  4995. }
  4996. public static string LocalizedReference {
  4997. get {
  4998. return SR.GetString (SR.LocalizedReference);
  4999. }
  5000. }
  5001. public static string LocalizedRight {
  5002. get {
  5003. return SR.GetString (SR.LocalizedRight);
  5004. }
  5005. }
  5006. public static string LocalizedRow {
  5007. get {
  5008. return SR.GetString (SR.LocalizedRow);
  5009. }
  5010. }
  5011. public static string LocalizedTerm {
  5012. get {
  5013. return SR.GetString (SR.LocalizedTerm);
  5014. }
  5015. }
  5016. public static string LocalizedType {
  5017. get {
  5018. return SR.GetString (SR.LocalizedType);
  5019. }
  5020. }
  5021. public static string LocalizedValueExpression {
  5022. get {
  5023. return SR.GetString (SR.LocalizedValueExpression);
  5024. }
  5025. }
  5026. public static string MalformedSingleQuotePayload {
  5027. get {
  5028. return SR.GetString (SR.MalformedSingleQuotePayload);
  5029. }
  5030. }
  5031. public static string MalformedStringLiteralPayload {
  5032. get {
  5033. return SR.GetString (SR.MalformedStringLiteralPayload);
  5034. }
  5035. }
  5036. public static string Mapping_ConditionValueTypeMismatch {
  5037. get {
  5038. return SR.GetString (SR.Mapping_ConditionValueTypeMismatch);
  5039. }
  5040. }
  5041. public static string Mapping_DifferentEdmStoreVersion {
  5042. get {
  5043. return SR.GetString (SR.Mapping_DifferentEdmStoreVersion);
  5044. }
  5045. }
  5046. public static string Mapping_DifferentMappingEdmStoreVersion {
  5047. get {
  5048. return SR.GetString (SR.Mapping_DifferentMappingEdmStoreVersion);
  5049. }
  5050. }
  5051. public static string Mapping_DistinctFlagInReadWriteContainer {
  5052. get {
  5053. return SR.GetString (SR.Mapping_DistinctFlagInReadWriteContainer);
  5054. }
  5055. }
  5056. public static string Mapping_General_Error {
  5057. get {
  5058. return SR.GetString (SR.Mapping_General_Error);
  5059. }
  5060. }
  5061. public static string Mapping_InvalidContent_Association_Type_Empty {
  5062. get {
  5063. return SR.GetString (SR.Mapping_InvalidContent_Association_Type_Empty);
  5064. }
  5065. }
  5066. public static string Mapping_InvalidContent_ConditionMapping_Both_Members {
  5067. get {
  5068. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_Both_Members);
  5069. }
  5070. }
  5071. public static string Mapping_InvalidContent_ConditionMapping_Both_Values {
  5072. get {
  5073. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_Both_Values);
  5074. }
  5075. }
  5076. public static string Mapping_InvalidContent_ConditionMapping_Either_Members {
  5077. get {
  5078. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_Either_Members);
  5079. }
  5080. }
  5081. public static string Mapping_InvalidContent_ConditionMapping_Either_Values {
  5082. get {
  5083. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_Either_Values);
  5084. }
  5085. }
  5086. public static string Mapping_InvalidContent_ConditionMapping_NonScalar {
  5087. get {
  5088. return SR.GetString (SR.Mapping_InvalidContent_ConditionMapping_NonScalar);
  5089. }
  5090. }
  5091. public static string Mapping_InvalidContent_Container_SubElement {
  5092. get {
  5093. return SR.GetString (SR.Mapping_InvalidContent_Container_SubElement);
  5094. }
  5095. }
  5096. public static string Mapping_InvalidContent_General {
  5097. get {
  5098. return SR.GetString (SR.Mapping_InvalidContent_General);
  5099. }
  5100. }
  5101. public static string Mapping_InvalidContent_IsTypeOfNotTerminated {
  5102. get {
  5103. return SR.GetString (SR.Mapping_InvalidContent_IsTypeOfNotTerminated);
  5104. }
  5105. }
  5106. public static string Mapping_InvalidContent_Table_Expected {
  5107. get {
  5108. return SR.GetString (SR.Mapping_InvalidContent_Table_Expected);
  5109. }
  5110. }
  5111. public static string Mapping_InvalidContent_TypeMapping_QueryView {
  5112. get {
  5113. return SR.GetString (SR.Mapping_InvalidContent_TypeMapping_QueryView);
  5114. }
  5115. }
  5116. public static string Mapping_ModificationFunction_In_Table_Context {
  5117. get {
  5118. return SR.GetString (SR.Mapping_ModificationFunction_In_Table_Context);
  5119. }
  5120. }
  5121. public static string Mapping_ModificationFunction_MissingVersion {
  5122. get {
  5123. return SR.GetString (SR.Mapping_ModificationFunction_MissingVersion);
  5124. }
  5125. }
  5126. public static string Mapping_ModificationFunction_Multiple_Types {
  5127. get {
  5128. return SR.GetString (SR.Mapping_ModificationFunction_Multiple_Types);
  5129. }
  5130. }
  5131. public static string Mapping_ModificationFunction_VersionMustBeCurrent {
  5132. get {
  5133. return SR.GetString (SR.Mapping_ModificationFunction_VersionMustBeCurrent);
  5134. }
  5135. }
  5136. public static string Mapping_ModificationFunction_VersionMustBeOriginal {
  5137. get {
  5138. return SR.GetString (SR.Mapping_ModificationFunction_VersionMustBeOriginal);
  5139. }
  5140. }
  5141. public static string Mapping_TypeName_For_First_QueryView {
  5142. get {
  5143. return SR.GetString (SR.Mapping_TypeName_For_First_QueryView);
  5144. }
  5145. }
  5146. public static string Materializer_CannotReEnumerateQueryResults {
  5147. get {
  5148. return SR.GetString (SR.Materializer_CannotReEnumerateQueryResults);
  5149. }
  5150. }
  5151. public static string Materializer_PropertyIsNotNullable {
  5152. get {
  5153. return SR.GetString (SR.Materializer_PropertyIsNotNullable);
  5154. }
  5155. }
  5156. public static string Materializer_UnsupportedType {
  5157. get {
  5158. return SR.GetString (SR.Materializer_UnsupportedType);
  5159. }
  5160. }
  5161. public static string Metadata_General_Error {
  5162. get {
  5163. return SR.GetString (SR.Metadata_General_Error);
  5164. }
  5165. }
  5166. public static string MethodInvocationNotSupported {
  5167. get {
  5168. return SR.GetString (SR.MethodInvocationNotSupported);
  5169. }
  5170. }
  5171. public static string MismatchNumberOfPropertiesinRelationshipConstraint {
  5172. get {
  5173. return SR.GetString (SR.MismatchNumberOfPropertiesinRelationshipConstraint);
  5174. }
  5175. }
  5176. public static string MissingName {
  5177. get {
  5178. return SR.GetString (SR.MissingName);
  5179. }
  5180. }
  5181. public static string MissingNamespaceAttribute {
  5182. get {
  5183. return SR.GetString (SR.MissingNamespaceAttribute);
  5184. }
  5185. }
  5186. public static string MultisetElemsAreNotTypeCompatible {
  5187. get {
  5188. return SR.GetString (SR.MultisetElemsAreNotTypeCompatible);
  5189. }
  5190. }
  5191. public static string NonComposableFunctionHasDisallowedAttribute {
  5192. get {
  5193. return SR.GetString (SR.NonComposableFunctionHasDisallowedAttribute);
  5194. }
  5195. }
  5196. public static string NonComposableFunctionMustNotDeclareReturnType {
  5197. get {
  5198. return SR.GetString (SR.NonComposableFunctionMustNotDeclareReturnType);
  5199. }
  5200. }
  5201. public static string NotBinaryTypeForTypeUsage {
  5202. get {
  5203. return SR.GetString (SR.NotBinaryTypeForTypeUsage);
  5204. }
  5205. }
  5206. public static string NotDateTimeOffsetTypeForTypeUsage {
  5207. get {
  5208. return SR.GetString (SR.NotDateTimeOffsetTypeForTypeUsage);
  5209. }
  5210. }
  5211. public static string NotDateTimeTypeForTypeUsage {
  5212. get {
  5213. return SR.GetString (SR.NotDateTimeTypeForTypeUsage);
  5214. }
  5215. }
  5216. public static string NotDecimalTypeForTypeUsage {
  5217. get {
  5218. return SR.GetString (SR.NotDecimalTypeForTypeUsage);
  5219. }
  5220. }
  5221. public static string NotStringTypeForTypeUsage {
  5222. get {
  5223. return SR.GetString (SR.NotStringTypeForTypeUsage);
  5224. }
  5225. }
  5226. public static string NotTimeTypeForTypeUsage {
  5227. get {
  5228. return SR.GetString (SR.NotTimeTypeForTypeUsage);
  5229. }
  5230. }
  5231. public static string NotValidInputPath {
  5232. get {
  5233. return SR.GetString (SR.NotValidInputPath);
  5234. }
  5235. }
  5236. public static string NullLiteralCannotBePromotedToCollectionOfNulls {
  5237. get {
  5238. return SR.GetString (SR.NullLiteralCannotBePromotedToCollectionOfNulls);
  5239. }
  5240. }
  5241. public static string ObjectContext_CannotAttachEntityWithoutKey {
  5242. get {
  5243. return SR.GetString (SR.ObjectContext_CannotAttachEntityWithoutKey);
  5244. }
  5245. }
  5246. public static string ObjectContext_CannotAttachEntityWithTemporaryKey {
  5247. get {
  5248. return SR.GetString (SR.ObjectContext_CannotAttachEntityWithTemporaryKey);
  5249. }
  5250. }
  5251. public static string ObjectContext_CannotDeleteEntityNotInObjectStateManager {
  5252. get {
  5253. return SR.GetString (SR.ObjectContext_CannotDeleteEntityNotInObjectStateManager);
  5254. }
  5255. }
  5256. public static string ObjectContext_CannotDetachEntityNotInObjectStateManager {
  5257. get {
  5258. return SR.GetString (SR.ObjectContext_CannotDetachEntityNotInObjectStateManager);
  5259. }
  5260. }
  5261. public static string ObjectContext_CannotSetDefaultContainerName {
  5262. get {
  5263. return SR.GetString (SR.ObjectContext_CannotSetDefaultContainerName);
  5264. }
  5265. }
  5266. public static string ObjectContext_CommitWithConceptualNull {
  5267. get {
  5268. return SR.GetString (SR.ObjectContext_CommitWithConceptualNull);
  5269. }
  5270. }
  5271. public static string ObjectContext_ContainerQualifiedEntitySetNameRequired {
  5272. get {
  5273. return SR.GetString (SR.ObjectContext_ContainerQualifiedEntitySetNameRequired);
  5274. }
  5275. }
  5276. public static string ObjectContext_EntityAlreadyExistsInObjectStateManager {
  5277. get {
  5278. return SR.GetString (SR.ObjectContext_EntityAlreadyExistsInObjectStateManager);
  5279. }
  5280. }
  5281. public static string ObjectContext_EntityNotTrackedOrHasTempKey {
  5282. get {
  5283. return SR.GetString (SR.ObjectContext_EntityNotTrackedOrHasTempKey);
  5284. }
  5285. }
  5286. public static string ObjectContext_EntitySetNameOrEntityKeyRequired {
  5287. get {
  5288. return SR.GetString (SR.ObjectContext_EntitySetNameOrEntityKeyRequired);
  5289. }
  5290. }
  5291. public static string ObjectContext_ExecuteCommandWithMixOfDbParameterAndValues {
  5292. get {
  5293. return SR.GetString (SR.ObjectContext_ExecuteCommandWithMixOfDbParameterAndValues);
  5294. }
  5295. }
  5296. public static string ObjectContext_InvalidCommandTimeout {
  5297. get {
  5298. return SR.GetString (SR.ObjectContext_InvalidCommandTimeout);
  5299. }
  5300. }
  5301. public static string ObjectContext_InvalidConnection {
  5302. get {
  5303. return SR.GetString (SR.ObjectContext_InvalidConnection);
  5304. }
  5305. }
  5306. public static string ObjectContext_InvalidConnectionString {
  5307. get {
  5308. return SR.GetString (SR.ObjectContext_InvalidConnectionString);
  5309. }
  5310. }
  5311. public static string ObjectContext_InvalidDataAdapter {
  5312. get {
  5313. return SR.GetString (SR.ObjectContext_InvalidDataAdapter);
  5314. }
  5315. }
  5316. public static string ObjectContext_InvalidEntityState {
  5317. get {
  5318. return SR.GetString (SR.ObjectContext_InvalidEntityState);
  5319. }
  5320. }
  5321. public static string ObjectContext_InvalidRelationshipState {
  5322. get {
  5323. return SR.GetString (SR.ObjectContext_InvalidRelationshipState);
  5324. }
  5325. }
  5326. public static string ObjectContext_MetadataHasChanged {
  5327. get {
  5328. return SR.GetString (SR.ObjectContext_MetadataHasChanged);
  5329. }
  5330. }
  5331. public static string ObjectContext_ObjectDisposed {
  5332. get {
  5333. return SR.GetString (SR.ObjectContext_ObjectDisposed);
  5334. }
  5335. }
  5336. public static string ObjectContext_ObjectNotFound {
  5337. get {
  5338. return SR.GetString (SR.ObjectContext_ObjectNotFound);
  5339. }
  5340. }
  5341. public static string ObjectContext_QualfiedEntitySetName {
  5342. get {
  5343. return SR.GetString (SR.ObjectContext_QualfiedEntitySetName);
  5344. }
  5345. }
  5346. public static string ObjectContext_RequiredMetadataNotAvailble {
  5347. get {
  5348. return SR.GetString (SR.ObjectContext_RequiredMetadataNotAvailble);
  5349. }
  5350. }
  5351. public static string ObjectContext_SelectorExpressionMustBeMemberAccess {
  5352. get {
  5353. return SR.GetString (SR.ObjectContext_SelectorExpressionMustBeMemberAccess);
  5354. }
  5355. }
  5356. public static string ObjectContext_StoreEntityNotPresentInClient {
  5357. get {
  5358. return SR.GetString (SR.ObjectContext_StoreEntityNotPresentInClient);
  5359. }
  5360. }
  5361. public static string ObjectParameterCollection_ParametersLocked {
  5362. get {
  5363. return SR.GetString (SR.ObjectParameterCollection_ParametersLocked);
  5364. }
  5365. }
  5366. public static string ObjectQuery_InvalidConnection {
  5367. get {
  5368. return SR.GetString (SR.ObjectQuery_InvalidConnection);
  5369. }
  5370. }
  5371. public static string ObjectQuery_InvalidEmptyQuery {
  5372. get {
  5373. return SR.GetString (SR.ObjectQuery_InvalidEmptyQuery);
  5374. }
  5375. }
  5376. public static string ObjectQuery_QueryBuilder_InvalidFilterPredicate {
  5377. get {
  5378. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidFilterPredicate);
  5379. }
  5380. }
  5381. public static string ObjectQuery_QueryBuilder_InvalidGroupKeyList {
  5382. get {
  5383. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidGroupKeyList);
  5384. }
  5385. }
  5386. public static string ObjectQuery_QueryBuilder_InvalidProjectionList {
  5387. get {
  5388. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidProjectionList);
  5389. }
  5390. }
  5391. public static string ObjectQuery_QueryBuilder_InvalidQueryArgument {
  5392. get {
  5393. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidQueryArgument);
  5394. }
  5395. }
  5396. public static string ObjectQuery_QueryBuilder_InvalidSkipCount {
  5397. get {
  5398. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidSkipCount);
  5399. }
  5400. }
  5401. public static string ObjectQuery_QueryBuilder_InvalidSortKeyList {
  5402. get {
  5403. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidSortKeyList);
  5404. }
  5405. }
  5406. public static string ObjectQuery_QueryBuilder_InvalidTopCount {
  5407. get {
  5408. return SR.GetString (SR.ObjectQuery_QueryBuilder_InvalidTopCount);
  5409. }
  5410. }
  5411. public static string ObjectQuery_QueryBuilder_NotSupportedLinqSource {
  5412. get {
  5413. return SR.GetString (SR.ObjectQuery_QueryBuilder_NotSupportedLinqSource);
  5414. }
  5415. }
  5416. public static string ObjectQuery_Span_IncludeRequiresEntityOrEntityCollection {
  5417. get {
  5418. return SR.GetString (SR.ObjectQuery_Span_IncludeRequiresEntityOrEntityCollection);
  5419. }
  5420. }
  5421. public static string ObjectQuery_Span_SpanPathSyntaxError {
  5422. get {
  5423. return SR.GetString (SR.ObjectQuery_Span_SpanPathSyntaxError);
  5424. }
  5425. }
  5426. public static string ObjectQuery_Span_WhiteSpacePath {
  5427. get {
  5428. return SR.GetString (SR.ObjectQuery_Span_WhiteSpacePath);
  5429. }
  5430. }
  5431. public static string ObjectQuery_UnableToMapResultType {
  5432. get {
  5433. return SR.GetString (SR.ObjectQuery_UnableToMapResultType);
  5434. }
  5435. }
  5436. public static string ObjectStateEntry_CannotAccessKeyEntryValues {
  5437. get {
  5438. return SR.GetString (SR.ObjectStateEntry_CannotAccessKeyEntryValues);
  5439. }
  5440. }
  5441. public static string ObjectStateEntry_CannotDeleteOnKeyEntry {
  5442. get {
  5443. return SR.GetString (SR.ObjectStateEntry_CannotDeleteOnKeyEntry);
  5444. }
  5445. }
  5446. public static string ObjectStateEntry_CannotModifyKeyEntryState {
  5447. get {
  5448. return SR.GetString (SR.ObjectStateEntry_CannotModifyKeyEntryState);
  5449. }
  5450. }
  5451. public static string ObjectStateEntry_CantModifyDetachedDeletedEntries {
  5452. get {
  5453. return SR.GetString (SR.ObjectStateEntry_CantModifyDetachedDeletedEntries);
  5454. }
  5455. }
  5456. public static string ObjectStateEntry_CantModifyRelationState {
  5457. get {
  5458. return SR.GetString (SR.ObjectStateEntry_CantModifyRelationState);
  5459. }
  5460. }
  5461. public static string ObjectStateEntry_CantModifyRelationValues {
  5462. get {
  5463. return SR.GetString (SR.ObjectStateEntry_CantModifyRelationValues);
  5464. }
  5465. }
  5466. public static string ObjectStateEntry_CantSetEntityKey {
  5467. get {
  5468. return SR.GetString (SR.ObjectStateEntry_CantSetEntityKey);
  5469. }
  5470. }
  5471. public static string ObjectStateEntry_CurrentValuesDoesNotExist {
  5472. get {
  5473. return SR.GetString (SR.ObjectStateEntry_CurrentValuesDoesNotExist);
  5474. }
  5475. }
  5476. public static string ObjectStateEntry_EntityMemberChangedWithoutEntityMemberChanging {
  5477. get {
  5478. return SR.GetString (SR.ObjectStateEntry_EntityMemberChangedWithoutEntityMemberChanging);
  5479. }
  5480. }
  5481. public static string ObjectStateEntry_InvalidState {
  5482. get {
  5483. return SR.GetString (SR.ObjectStateEntry_InvalidState);
  5484. }
  5485. }
  5486. public static string ObjectStateEntry_InvalidTypeForComplexTypeProperty {
  5487. get {
  5488. return SR.GetString (SR.ObjectStateEntry_InvalidTypeForComplexTypeProperty);
  5489. }
  5490. }
  5491. public static string ObjectStateEntry_OriginalValuesDoesNotExist {
  5492. get {
  5493. return SR.GetString (SR.ObjectStateEntry_OriginalValuesDoesNotExist);
  5494. }
  5495. }
  5496. public static string ObjectStateEntry_RelationshipAndKeyEntriesDoNotHaveRelationshipManagers {
  5497. get {
  5498. return SR.GetString (SR.ObjectStateEntry_RelationshipAndKeyEntriesDoNotHaveRelationshipManagers);
  5499. }
  5500. }
  5501. public static string ObjectStateManager_AcceptChangesEntityKeyIsNotValid {
  5502. get {
  5503. return SR.GetString (SR.ObjectStateManager_AcceptChangesEntityKeyIsNotValid);
  5504. }
  5505. }
  5506. public static string ObjectStateManager_CannotChangeRelationshipStateEntityAdded {
  5507. get {
  5508. return SR.GetString (SR.ObjectStateManager_CannotChangeRelationshipStateEntityAdded);
  5509. }
  5510. }
  5511. public static string ObjectStateManager_CannotChangeRelationshipStateEntityDeleted {
  5512. get {
  5513. return SR.GetString (SR.ObjectStateManager_CannotChangeRelationshipStateEntityDeleted);
  5514. }
  5515. }
  5516. public static string ObjectStateManager_CannotChangeRelationshipStateKeyEntry {
  5517. get {
  5518. return SR.GetString (SR.ObjectStateManager_CannotChangeRelationshipStateKeyEntry);
  5519. }
  5520. }
  5521. public static string ObjectStateManager_CannotFixUpKeyToExistingValues {
  5522. get {
  5523. return SR.GetString (SR.ObjectStateManager_CannotFixUpKeyToExistingValues);
  5524. }
  5525. }
  5526. public static string ObjectStateManager_CannotGetRelationshipManagerForDetachedPocoEntity {
  5527. get {
  5528. return SR.GetString (SR.ObjectStateManager_CannotGetRelationshipManagerForDetachedPocoEntity);
  5529. }
  5530. }
  5531. public static string ObjectStateManager_ChangeRelationshipStateNotSupportedForForeignKeyAssociations {
  5532. get {
  5533. return SR.GetString (SR.ObjectStateManager_ChangeRelationshipStateNotSupportedForForeignKeyAssociations);
  5534. }
  5535. }
  5536. public static string ObjectStateManager_ChangeStateFromAddedWithNullKeyIsInvalid {
  5537. get {
  5538. return SR.GetString (SR.ObjectStateManager_ChangeStateFromAddedWithNullKeyIsInvalid);
  5539. }
  5540. }
  5541. public static string ObjectStateManager_DetachedObjectStateEntriesDoesNotExistInObjectStateManager {
  5542. get {
  5543. return SR.GetString (SR.ObjectStateManager_DetachedObjectStateEntriesDoesNotExistInObjectStateManager);
  5544. }
  5545. }
  5546. public static string ObjectStateManager_EntityConflictsWithKeyEntry {
  5547. get {
  5548. return SR.GetString (SR.ObjectStateManager_EntityConflictsWithKeyEntry);
  5549. }
  5550. }
  5551. public static string ObjectStateManager_EntityNotTracked {
  5552. get {
  5553. return SR.GetString (SR.ObjectStateManager_EntityNotTracked);
  5554. }
  5555. }
  5556. public static string ObjectStateManager_InvalidKey {
  5557. get {
  5558. return SR.GetString (SR.ObjectStateManager_InvalidKey);
  5559. }
  5560. }
  5561. public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKey {
  5562. get {
  5563. return SR.GetString (SR.ObjectStateManager_KeyPropertyDoesntMatchValueInKey);
  5564. }
  5565. }
  5566. public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKeyForAttach {
  5567. get {
  5568. return SR.GetString (SR.ObjectStateManager_KeyPropertyDoesntMatchValueInKeyForAttach);
  5569. }
  5570. }
  5571. public static string ObjectStateManager_NoEntryExistForEntityKey {
  5572. get {
  5573. return SR.GetString (SR.ObjectStateManager_NoEntryExistForEntityKey);
  5574. }
  5575. }
  5576. public static string ObjectStateManager_ObjectStateManagerContainsThisEntityKey {
  5577. get {
  5578. return SR.GetString (SR.ObjectStateManager_ObjectStateManagerContainsThisEntityKey);
  5579. }
  5580. }
  5581. public static string ObjectView_AddNewOperationNotAllowedOnAbstractBindingList {
  5582. get {
  5583. return SR.GetString (SR.ObjectView_AddNewOperationNotAllowedOnAbstractBindingList);
  5584. }
  5585. }
  5586. public static string ObjectView_CannotReplacetheEntityorRow {
  5587. get {
  5588. return SR.GetString (SR.ObjectView_CannotReplacetheEntityorRow);
  5589. }
  5590. }
  5591. public static string ObjectView_IncompatibleArgument {
  5592. get {
  5593. return SR.GetString (SR.ObjectView_IncompatibleArgument);
  5594. }
  5595. }
  5596. public static string ObjectView_IndexBasedInsertIsNotSupported {
  5597. get {
  5598. return SR.GetString (SR.ObjectView_IndexBasedInsertIsNotSupported);
  5599. }
  5600. }
  5601. public static string ObjectView_WriteOperationNotAllowedOnReadOnlyBindingList {
  5602. get {
  5603. return SR.GetString (SR.ObjectView_WriteOperationNotAllowedOnReadOnlyBindingList);
  5604. }
  5605. }
  5606. public static string OnlyStoreConnectionsSupported {
  5607. get {
  5608. return SR.GetString (SR.OnlyStoreConnectionsSupported);
  5609. }
  5610. }
  5611. public static string OperationOnReadOnlyCollection {
  5612. get {
  5613. return SR.GetString (SR.OperationOnReadOnlyCollection);
  5614. }
  5615. }
  5616. public static string OperationOnReadOnlyItem {
  5617. get {
  5618. return SR.GetString (SR.OperationOnReadOnlyItem);
  5619. }
  5620. }
  5621. public static string OrderByKeyIsNotOrderComparable {
  5622. get {
  5623. return SR.GetString (SR.OrderByKeyIsNotOrderComparable);
  5624. }
  5625. }
  5626. public static string PlusLeftExpressionInvalidType {
  5627. get {
  5628. return SR.GetString (SR.PlusLeftExpressionInvalidType);
  5629. }
  5630. }
  5631. public static string PlusRightExpressionInvalidType {
  5632. get {
  5633. return SR.GetString (SR.PlusRightExpressionInvalidType);
  5634. }
  5635. }
  5636. public static string ProviderDidNotCreateACommandDefinition {
  5637. get {
  5638. return SR.GetString (SR.ProviderDidNotCreateACommandDefinition);
  5639. }
  5640. }
  5641. public static string ProviderDidNotReturnAProviderManifest {
  5642. get {
  5643. return SR.GetString (SR.ProviderDidNotReturnAProviderManifest);
  5644. }
  5645. }
  5646. public static string ProviderDidNotReturnAProviderManifestToken {
  5647. get {
  5648. return SR.GetString (SR.ProviderDidNotReturnAProviderManifestToken);
  5649. }
  5650. }
  5651. public static string ProviderDidNotReturnSpatialServices {
  5652. get {
  5653. return SR.GetString (SR.ProviderDidNotReturnSpatialServices);
  5654. }
  5655. }
  5656. public static string ProviderDoesNotSupportCreateDatabase {
  5657. get {
  5658. return SR.GetString (SR.ProviderDoesNotSupportCreateDatabase);
  5659. }
  5660. }
  5661. public static string ProviderDoesNotSupportCreateDatabaseScript {
  5662. get {
  5663. return SR.GetString (SR.ProviderDoesNotSupportCreateDatabaseScript);
  5664. }
  5665. }
  5666. public static string ProviderDoesNotSupportDatabaseExists {
  5667. get {
  5668. return SR.GetString (SR.ProviderDoesNotSupportDatabaseExists);
  5669. }
  5670. }
  5671. public static string ProviderDoesNotSupportDeleteDatabase {
  5672. get {
  5673. return SR.GetString (SR.ProviderDoesNotSupportDeleteDatabase);
  5674. }
  5675. }
  5676. public static string ProviderEscapeLikeArgumentReturnedNull {
  5677. get {
  5678. return SR.GetString (SR.ProviderEscapeLikeArgumentReturnedNull);
  5679. }
  5680. }
  5681. public static string ProviderManifestTokenNotFound {
  5682. get {
  5683. return SR.GetString (SR.ProviderManifestTokenNotFound);
  5684. }
  5685. }
  5686. public static string ProviderRequiresStoreCommandTree {
  5687. get {
  5688. return SR.GetString (SR.ProviderRequiresStoreCommandTree);
  5689. }
  5690. }
  5691. public static string ProviderReturnedNullForCreateCommandDefinition {
  5692. get {
  5693. return SR.GetString (SR.ProviderReturnedNullForCreateCommandDefinition);
  5694. }
  5695. }
  5696. public static string ProviderShouldOverrideEscapeLikeArgument {
  5697. get {
  5698. return SR.GetString (SR.ProviderShouldOverrideEscapeLikeArgument);
  5699. }
  5700. }
  5701. public static string RelatedEnd_CannotCreateRelationshipEntitiesInDifferentContexts {
  5702. get {
  5703. return SR.GetString (SR.RelatedEnd_CannotCreateRelationshipEntitiesInDifferentContexts);
  5704. }
  5705. }
  5706. public static string RelatedEnd_ConflictingChangeOfRelationshipDetected {
  5707. get {
  5708. return SR.GetString (SR.RelatedEnd_ConflictingChangeOfRelationshipDetected);
  5709. }
  5710. }
  5711. public static string RelatedEnd_InvalidEntityContextForAttach {
  5712. get {
  5713. return SR.GetString (SR.RelatedEnd_InvalidEntityContextForAttach);
  5714. }
  5715. }
  5716. public static string RelatedEnd_InvalidEntityStateForAttach {
  5717. get {
  5718. return SR.GetString (SR.RelatedEnd_InvalidEntityStateForAttach);
  5719. }
  5720. }
  5721. public static string RelatedEnd_InvalidOwnerStateForAttach {
  5722. get {
  5723. return SR.GetString (SR.RelatedEnd_InvalidOwnerStateForAttach);
  5724. }
  5725. }
  5726. public static string RelatedEnd_LoadCalledOnAlreadyLoadedNoTrackedRelatedEnd {
  5727. get {
  5728. return SR.GetString (SR.RelatedEnd_LoadCalledOnAlreadyLoadedNoTrackedRelatedEnd);
  5729. }
  5730. }
  5731. public static string RelatedEnd_LoadCalledOnNonEmptyNoTrackedRelatedEnd {
  5732. get {
  5733. return SR.GetString (SR.RelatedEnd_LoadCalledOnNonEmptyNoTrackedRelatedEnd);
  5734. }
  5735. }
  5736. public static string RelatedEnd_OwnerIsNull {
  5737. get {
  5738. return SR.GetString (SR.RelatedEnd_OwnerIsNull);
  5739. }
  5740. }
  5741. public static string RelatedEnd_RelatedEndNotFound {
  5742. get {
  5743. return SR.GetString (SR.RelatedEnd_RelatedEndNotFound);
  5744. }
  5745. }
  5746. public static string RelatedEnd_UnableToAddEntity {
  5747. get {
  5748. return SR.GetString (SR.RelatedEnd_UnableToAddEntity);
  5749. }
  5750. }
  5751. public static string RelatedEnd_UnableToAddRelationshipWithDeletedEntity {
  5752. get {
  5753. return SR.GetString (SR.RelatedEnd_UnableToAddRelationshipWithDeletedEntity);
  5754. }
  5755. }
  5756. public static string RelatedEnd_UnableToRemoveEntity {
  5757. get {
  5758. return SR.GetString (SR.RelatedEnd_UnableToRemoveEntity);
  5759. }
  5760. }
  5761. public static string RelatedEndExprTypeMustBeReference {
  5762. get {
  5763. return SR.GetString (SR.RelatedEndExprTypeMustBeReference);
  5764. }
  5765. }
  5766. public static string RelationshipFromEndIsAmbiguos {
  5767. get {
  5768. return SR.GetString (SR.RelationshipFromEndIsAmbiguos);
  5769. }
  5770. }
  5771. public static string RelationshipManager_CannotGetRelatEndForDetachedPocoEntity {
  5772. get {
  5773. return SR.GetString (SR.RelationshipManager_CannotGetRelatEndForDetachedPocoEntity);
  5774. }
  5775. }
  5776. public static string RelationshipManager_CircularRelationshipsWithReferentialConstraints {
  5777. get {
  5778. return SR.GetString (SR.RelationshipManager_CircularRelationshipsWithReferentialConstraints);
  5779. }
  5780. }
  5781. public static string RelationshipManager_CollectionInitializeIsForDeserialization {
  5782. get {
  5783. return SR.GetString (SR.RelationshipManager_CollectionInitializeIsForDeserialization);
  5784. }
  5785. }
  5786. public static string RelationshipManager_InconsistentReferentialConstraintProperties {
  5787. get {
  5788. return SR.GetString (SR.RelationshipManager_InconsistentReferentialConstraintProperties);
  5789. }
  5790. }
  5791. public static string RelationshipManager_InitializeIsForDeserialization {
  5792. get {
  5793. return SR.GetString (SR.RelationshipManager_InitializeIsForDeserialization);
  5794. }
  5795. }
  5796. public static string RelationshipManager_InvalidRelationshipManagerOwner {
  5797. get {
  5798. return SR.GetString (SR.RelationshipManager_InvalidRelationshipManagerOwner);
  5799. }
  5800. }
  5801. public static string RelationshipManager_UnableToRetrieveReferentialConstraintProperties {
  5802. get {
  5803. return SR.GetString (SR.RelationshipManager_UnableToRetrieveReferentialConstraintProperties);
  5804. }
  5805. }
  5806. public static string RelationshipManager_UnexpectedNull {
  5807. get {
  5808. return SR.GetString (SR.RelationshipManager_UnexpectedNull);
  5809. }
  5810. }
  5811. public static string RelationshipManager_UnexpectedNullContext {
  5812. get {
  5813. return SR.GetString (SR.RelationshipManager_UnexpectedNullContext);
  5814. }
  5815. }
  5816. public static string RelationshipToEndIsAmbiguos {
  5817. get {
  5818. return SR.GetString (SR.RelationshipToEndIsAmbiguos);
  5819. }
  5820. }
  5821. public static string ResultingExpressionTypeCannotBeNull {
  5822. get {
  5823. return SR.GetString (SR.ResultingExpressionTypeCannotBeNull);
  5824. }
  5825. }
  5826. public static string RightSetExpressionArgsMustBeCollection {
  5827. get {
  5828. return SR.GetString (SR.RightSetExpressionArgsMustBeCollection);
  5829. }
  5830. }
  5831. public static string RowCtorElementCannotBeNull {
  5832. get {
  5833. return SR.GetString (SR.RowCtorElementCannotBeNull);
  5834. }
  5835. }
  5836. public static string RowTypeWithoutProperty {
  5837. get {
  5838. return SR.GetString (SR.RowTypeWithoutProperty);
  5839. }
  5840. }
  5841. public static string SelectDistinctMustBeEqualComparable {
  5842. get {
  5843. return SR.GetString (SR.SelectDistinctMustBeEqualComparable);
  5844. }
  5845. }
  5846. public static string SourceUriUnknown {
  5847. get {
  5848. return SR.GetString (SR.SourceUriUnknown);
  5849. }
  5850. }
  5851. public static string Spatial_GeographyValueNotCompatibleWithSpatialServices {
  5852. get {
  5853. return SR.GetString (SR.Spatial_GeographyValueNotCompatibleWithSpatialServices);
  5854. }
  5855. }
  5856. public static string Spatial_GeometryValueNotCompatibleWithSpatialServices {
  5857. get {
  5858. return SR.GetString (SR.Spatial_GeometryValueNotCompatibleWithSpatialServices);
  5859. }
  5860. }
  5861. public static string Spatial_ProviderValueNotCompatibleWithSpatialServices {
  5862. get {
  5863. return SR.GetString (SR.Spatial_ProviderValueNotCompatibleWithSpatialServices);
  5864. }
  5865. }
  5866. public static string Spatial_WellKnownGeographyValueNotValid {
  5867. get {
  5868. return SR.GetString (SR.Spatial_WellKnownGeographyValueNotValid);
  5869. }
  5870. }
  5871. public static string Spatial_WellKnownGeometryValueNotValid {
  5872. get {
  5873. return SR.GetString (SR.Spatial_WellKnownGeometryValueNotValid);
  5874. }
  5875. }
  5876. public static string Spatial_WellKnownValueSerializationPropertyNotDirectlySettable {
  5877. get {
  5878. return SR.GetString (SR.Spatial_WellKnownValueSerializationPropertyNotDirectlySettable);
  5879. }
  5880. }
  5881. public static string SpatialWithUseStrongSpatialTypesFalse {
  5882. get {
  5883. return SR.GetString (SR.SpatialWithUseStrongSpatialTypesFalse);
  5884. }
  5885. }
  5886. public static string SqlGen_ApplyNotSupportedOnSql8 {
  5887. get {
  5888. return SR.GetString (SR.SqlGen_ApplyNotSupportedOnSql8);
  5889. }
  5890. }
  5891. public static string SqlGen_NiladicFunctionsCannotHaveParameters {
  5892. get {
  5893. return SR.GetString (SR.SqlGen_NiladicFunctionsCannotHaveParameters);
  5894. }
  5895. }
  5896. public static string SqlGen_ParameterForLimitNotSupportedOnSql8 {
  5897. get {
  5898. return SR.GetString (SR.SqlGen_ParameterForLimitNotSupportedOnSql8);
  5899. }
  5900. }
  5901. public static string SqlGen_ParameterForSkipNotSupportedOnSql8 {
  5902. get {
  5903. return SR.GetString (SR.SqlGen_ParameterForSkipNotSupportedOnSql8);
  5904. }
  5905. }
  5906. public static string SqlProvider_CredentialsMissingForMasterConnection {
  5907. get {
  5908. return SR.GetString (SR.SqlProvider_CredentialsMissingForMasterConnection);
  5909. }
  5910. }
  5911. public static string SqlProvider_DdlGeneration_CannotDeleteDatabaseNoInitialCatalog {
  5912. get {
  5913. return SR.GetString (SR.SqlProvider_DdlGeneration_CannotDeleteDatabaseNoInitialCatalog);
  5914. }
  5915. }
  5916. public static string SqlProvider_DdlGeneration_CannotTellIfDatabaseExists {
  5917. get {
  5918. return SR.GetString (SR.SqlProvider_DdlGeneration_CannotTellIfDatabaseExists);
  5919. }
  5920. }
  5921. public static string SqlProvider_DdlGeneration_MissingInitialCatalog {
  5922. get {
  5923. return SR.GetString (SR.SqlProvider_DdlGeneration_MissingInitialCatalog);
  5924. }
  5925. }
  5926. public static string SqlProvider_GeographyValueNotSqlCompatible {
  5927. get {
  5928. return SR.GetString (SR.SqlProvider_GeographyValueNotSqlCompatible);
  5929. }
  5930. }
  5931. public static string SqlProvider_GeometryValueNotSqlCompatible {
  5932. get {
  5933. return SR.GetString (SR.SqlProvider_GeometryValueNotSqlCompatible);
  5934. }
  5935. }
  5936. public static string SqlProvider_IncompleteCreateDatabase {
  5937. get {
  5938. return SR.GetString (SR.SqlProvider_IncompleteCreateDatabase);
  5939. }
  5940. }
  5941. public static string SqlProvider_IncompleteCreateDatabaseAggregate {
  5942. get {
  5943. return SR.GetString (SR.SqlProvider_IncompleteCreateDatabaseAggregate);
  5944. }
  5945. }
  5946. public static string SqlProvider_Sql2008RequiredForSpatial {
  5947. get {
  5948. return SR.GetString (SR.SqlProvider_Sql2008RequiredForSpatial);
  5949. }
  5950. }
  5951. public static string SqlProvider_SqlTypesAssemblyNotFound {
  5952. get {
  5953. return SR.GetString (SR.SqlProvider_SqlTypesAssemblyNotFound);
  5954. }
  5955. }
  5956. public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoSrid {
  5957. get {
  5958. return SR.GetString (SR.SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoSrid);
  5959. }
  5960. }
  5961. public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoWkbOrWkt {
  5962. get {
  5963. return SR.GetString (SR.SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoWkbOrWkt);
  5964. }
  5965. }
  5966. public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoSrid {
  5967. get {
  5968. return SR.GetString (SR.SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoSrid);
  5969. }
  5970. }
  5971. public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoWkbOrWkt {
  5972. get {
  5973. return SR.GetString (SR.SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoWkbOrWkt);
  5974. }
  5975. }
  5976. public static string StackOverflowInParser {
  5977. get {
  5978. return SR.GetString (SR.StackOverflowInParser);
  5979. }
  5980. }
  5981. public static string TopAndLimitCannotCoexist {
  5982. get {
  5983. return SR.GetString (SR.TopAndLimitCannotCoexist);
  5984. }
  5985. }
  5986. public static string TopAndSkipCannotCoexist {
  5987. get {
  5988. return SR.GetString (SR.TopAndSkipCannotCoexist);
  5989. }
  5990. }
  5991. public static string TVFReturnTypeRowHasNonScalarProperty {
  5992. get {
  5993. return SR.GetString (SR.TVFReturnTypeRowHasNonScalarProperty);
  5994. }
  5995. }
  5996. public static string TypeArgumentIsNotValid {
  5997. get {
  5998. return SR.GetString (SR.TypeArgumentIsNotValid);
  5999. }
  6000. }
  6001. public static string TypeArgumentMustBeLiteral {
  6002. get {
  6003. return SR.GetString (SR.TypeArgumentMustBeLiteral);
  6004. }
  6005. }
  6006. public static string TypeDeclaredAsAttributeAndElement {
  6007. get {
  6008. return SR.GetString (SR.TypeDeclaredAsAttributeAndElement);
  6009. }
  6010. }
  6011. public static string TypeMustBeDeclared {
  6012. get {
  6013. return SR.GetString (SR.TypeMustBeDeclared);
  6014. }
  6015. }
  6016. public static string TypeMustBeInheritableType {
  6017. get {
  6018. return SR.GetString (SR.TypeMustBeInheritableType);
  6019. }
  6020. }
  6021. public static string UnableToDetermineApplicationContext {
  6022. get {
  6023. return SR.GetString (SR.UnableToDetermineApplicationContext);
  6024. }
  6025. }
  6026. public static string UnableToDetermineStoreVersion {
  6027. get {
  6028. return SR.GetString (SR.UnableToDetermineStoreVersion);
  6029. }
  6030. }
  6031. public static string UnableToLoadResource {
  6032. get {
  6033. return SR.GetString (SR.UnableToLoadResource);
  6034. }
  6035. }
  6036. public static string UnknownAstCommandExpression {
  6037. get {
  6038. return SR.GetString (SR.UnknownAstCommandExpression);
  6039. }
  6040. }
  6041. public static string UnknownAstExpressionType {
  6042. get {
  6043. return SR.GetString (SR.UnknownAstExpressionType);
  6044. }
  6045. }
  6046. public static string UnknownBuiltInAstExpressionType {
  6047. get {
  6048. return SR.GetString (SR.UnknownBuiltInAstExpressionType);
  6049. }
  6050. }
  6051. public static string Update_AmbiguousServerGenIdentifier {
  6052. get {
  6053. return SR.GetString (SR.Update_AmbiguousServerGenIdentifier);
  6054. }
  6055. }
  6056. public static string Update_CircularRelationships {
  6057. get {
  6058. return SR.GetString (SR.Update_CircularRelationships);
  6059. }
  6060. }
  6061. public static string Update_ConstraintCycle {
  6062. get {
  6063. return SR.GetString (SR.Update_ConstraintCycle);
  6064. }
  6065. }
  6066. public static string Update_DuplicateKeys {
  6067. get {
  6068. return SR.GetString (SR.Update_DuplicateKeys);
  6069. }
  6070. }
  6071. public static string Update_ErrorLoadingRecord {
  6072. get {
  6073. return SR.GetString (SR.Update_ErrorLoadingRecord);
  6074. }
  6075. }
  6076. public static string Update_GeneralExecutionException {
  6077. get {
  6078. return SR.GetString (SR.Update_GeneralExecutionException);
  6079. }
  6080. }
  6081. public static string Update_InvalidChanges {
  6082. get {
  6083. return SR.GetString (SR.Update_InvalidChanges);
  6084. }
  6085. }
  6086. public static string Update_ReferentialConstraintIntegrityViolation {
  6087. get {
  6088. return SR.GetString (SR.Update_ReferentialConstraintIntegrityViolation);
  6089. }
  6090. }
  6091. public static string Update_WorkspaceMismatch {
  6092. get {
  6093. return SR.GetString (SR.Update_WorkspaceMismatch);
  6094. }
  6095. }
  6096. public static string Validator_BaseTypeHasMemberOfSameName {
  6097. get {
  6098. return SR.GetString (SR.Validator_BaseTypeHasMemberOfSameName);
  6099. }
  6100. }
  6101. public static string Validator_CollectionHasNoTypeUsage {
  6102. get {
  6103. return SR.GetString (SR.Validator_CollectionHasNoTypeUsage);
  6104. }
  6105. }
  6106. public static string Validator_CollectionTypesCannotHaveBaseType {
  6107. get {
  6108. return SR.GetString (SR.Validator_CollectionTypesCannotHaveBaseType);
  6109. }
  6110. }
  6111. public static string Validator_EmptyIdentity {
  6112. get {
  6113. return SR.GetString (SR.Validator_EmptyIdentity);
  6114. }
  6115. }
  6116. public static string Validator_FacetHasNoName {
  6117. get {
  6118. return SR.GetString (SR.Validator_FacetHasNoName);
  6119. }
  6120. }
  6121. public static string Validator_FacetTypeIsNull {
  6122. get {
  6123. return SR.GetString (SR.Validator_FacetTypeIsNull);
  6124. }
  6125. }
  6126. public static string Validator_ItemAttributeHasNullTypeUsage {
  6127. get {
  6128. return SR.GetString (SR.Validator_ItemAttributeHasNullTypeUsage);
  6129. }
  6130. }
  6131. public static string Validator_MemberHasNoName {
  6132. get {
  6133. return SR.GetString (SR.Validator_MemberHasNoName);
  6134. }
  6135. }
  6136. public static string Validator_MemberHasNullDeclaringType {
  6137. get {
  6138. return SR.GetString (SR.Validator_MemberHasNullDeclaringType);
  6139. }
  6140. }
  6141. public static string Validator_MemberHasNullTypeUsage {
  6142. get {
  6143. return SR.GetString (SR.Validator_MemberHasNullTypeUsage);
  6144. }
  6145. }
  6146. public static string Validator_MetadataPropertyHasNoName {
  6147. get {
  6148. return SR.GetString (SR.Validator_MetadataPropertyHasNoName);
  6149. }
  6150. }
  6151. public static string Validator_OSpace_Convention_NonMatchingUnderlyingTypes {
  6152. get {
  6153. return SR.GetString (SR.Validator_OSpace_Convention_NonMatchingUnderlyingTypes);
  6154. }
  6155. }
  6156. public static string Validator_RefTypeHasNullEntityType {
  6157. get {
  6158. return SR.GetString (SR.Validator_RefTypeHasNullEntityType);
  6159. }
  6160. }
  6161. public static string Validator_RefTypesCannotHaveBaseType {
  6162. get {
  6163. return SR.GetString (SR.Validator_RefTypesCannotHaveBaseType);
  6164. }
  6165. }
  6166. public static string Validator_TypeHasNoName {
  6167. get {
  6168. return SR.GetString (SR.Validator_TypeHasNoName);
  6169. }
  6170. }
  6171. public static string Validator_TypeHasNoNamespace {
  6172. get {
  6173. return SR.GetString (SR.Validator_TypeHasNoNamespace);
  6174. }
  6175. }
  6176. public static string Validator_TypeUsageHasNullEdmType {
  6177. get {
  6178. return SR.GetString (SR.Validator_TypeUsageHasNullEdmType);
  6179. }
  6180. }
  6181. public static string ViewGen_AND {
  6182. get {
  6183. return SR.GetString (SR.ViewGen_AND);
  6184. }
  6185. }
  6186. public static string ViewGen_CommaBlank {
  6187. get {
  6188. return SR.GetString (SR.ViewGen_CommaBlank);
  6189. }
  6190. }
  6191. public static string ViewGen_Entities {
  6192. get {
  6193. return SR.GetString (SR.ViewGen_Entities);
  6194. }
  6195. }
  6196. public static string ViewGen_EntityInstanceToken {
  6197. get {
  6198. return SR.GetString (SR.ViewGen_EntityInstanceToken);
  6199. }
  6200. }
  6201. public static string ViewGen_Error {
  6202. get {
  6203. return SR.GetString (SR.ViewGen_Error);
  6204. }
  6205. }
  6206. public static string Viewgen_ErrorPattern_Partition_Disj_Eq {
  6207. get {
  6208. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Disj_Eq);
  6209. }
  6210. }
  6211. public static string Viewgen_ErrorPattern_Partition_Disj_Subs {
  6212. get {
  6213. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Disj_Subs);
  6214. }
  6215. }
  6216. public static string Viewgen_ErrorPattern_Partition_Disj_Subs_Ref {
  6217. get {
  6218. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Disj_Subs_Ref);
  6219. }
  6220. }
  6221. public static string Viewgen_ErrorPattern_Partition_Disj_Unk {
  6222. get {
  6223. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Disj_Unk);
  6224. }
  6225. }
  6226. public static string Viewgen_ErrorPattern_Partition_Eq_Disj {
  6227. get {
  6228. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Eq_Disj);
  6229. }
  6230. }
  6231. public static string Viewgen_ErrorPattern_Partition_Eq_Subs {
  6232. get {
  6233. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Eq_Subs);
  6234. }
  6235. }
  6236. public static string Viewgen_ErrorPattern_Partition_Eq_Subs_Ref {
  6237. get {
  6238. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Eq_Subs_Ref);
  6239. }
  6240. }
  6241. public static string Viewgen_ErrorPattern_Partition_Eq_Unk {
  6242. get {
  6243. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Eq_Unk);
  6244. }
  6245. }
  6246. public static string Viewgen_ErrorPattern_Partition_Eq_Unk_Association {
  6247. get {
  6248. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Eq_Unk_Association);
  6249. }
  6250. }
  6251. public static string Viewgen_ErrorPattern_Partition_Sub_Disj {
  6252. get {
  6253. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Sub_Disj);
  6254. }
  6255. }
  6256. public static string Viewgen_ErrorPattern_Partition_Sub_Eq {
  6257. get {
  6258. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Sub_Eq);
  6259. }
  6260. }
  6261. public static string Viewgen_ErrorPattern_Partition_Sub_Eq_Ref {
  6262. get {
  6263. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Sub_Eq_Ref);
  6264. }
  6265. }
  6266. public static string Viewgen_ErrorPattern_Partition_Sub_Unk {
  6267. get {
  6268. return SR.GetString (SR.Viewgen_ErrorPattern_Partition_Sub_Unk);
  6269. }
  6270. }
  6271. public static string ViewGen_Extent {
  6272. get {
  6273. return SR.GetString (SR.ViewGen_Extent);
  6274. }
  6275. }
  6276. public static string Viewgen_NoJoinKeyOrFK {
  6277. get {
  6278. return SR.GetString (SR.Viewgen_NoJoinKeyOrFK);
  6279. }
  6280. }
  6281. public static string ViewGen_NotNull {
  6282. get {
  6283. return SR.GetString (SR.ViewGen_NotNull);
  6284. }
  6285. }
  6286. public static string ViewGen_Null {
  6287. get {
  6288. return SR.GetString (SR.ViewGen_Null);
  6289. }
  6290. }
  6291. public static string ViewGen_Tuples {
  6292. get {
  6293. return SR.GetString (SR.ViewGen_Tuples);
  6294. }
  6295. }
  6296. public static string WildcardEnumeratorReturnedNull {
  6297. get {
  6298. return SR.GetString (SR.WildcardEnumeratorReturnedNull);
  6299. }
  6300. }
  6301. }
  6302. }